
微信小程序
不平凡中的平凡
这个作者很懒,什么都没留下…
展开
-
微信小程序中的云函数操作数据库
云函数操作数据库(以查询数据库内容为例): 云函数loginInfo.js中的内容如下 // 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init() const db= cloud.database() // 云函数入口函数 exports.main = (event, context) => { console.log...原创 2019-05-20 16:15:58 · 6214 阅读 · 2 评论 -
去掉微信小程序button的边框
微信小程序button按钮去掉边框,使用style="border:none;"或者style="border-width:0;"等方法无效。 有效方法如下: button::after { border: none; }原创 2019-06-04 10:04:46 · 412 阅读 · 0 评论 -
微信小程序中如何获取url中的参数
微信小程序中如何获取url中的参数,通过onLoad中的options参数,方法如下: Page({ onLoad:function(options){ console.log(options); } })原创 2019-06-30 18:55:20 · 13321 阅读 · 2 评论