- 1、云函数触发器为啥不管用?已解决
1、云函数目录下config.json { "triggers": [ { "name": "myTrigger", "type": "timer", "config": "0 */10 8-12 * * * *" } ] } 已解决
2020-10-20 - 云函数触发器不正常工作?已解决
1、config.json { "triggers": [ { "name": "myTrigger", "type": "timer", "config": "0 */30 9-17 * * * *" } ] } //上传触发器了,还不起作用? 已解决
2020-10-19 - for循环中云数据库查询变量异常无法获取?
//h为系统时间hour var Trr=2 var xm=0 var smm = "mm" for (var i=0;i<=6;i++){ Trr=Trr+1 var xm=xm+1 var nxm="mm"+xm if (h!=Trr){ db.collection(smm).orderBy('bh', 'asc').where( conm.or([ { sf:1 }, { ls:1 }, ]).and(([ { ht:Trr, }, { nx:1 }, ])) ) .get() .then(res => { console.log(res); if (res.data.length==12){ this.setData({ [nxm]:"my" }) } }) } } //[nxm],没有变化?但没有db.collection(smm).orderBy('bh', 'asc').where时,一切正常
2020-10-19 - 微信小程序云支付,用户支付后不按确定,导致,钱已付,但云支付函数不执行支付成功后的写入数据库等功能?
微信小程序云支付,用户支付后不按确定,出现,钱已付,但云支付函数不执行支付成功后的写入数据库等功能局面 怎样避免此情况发生?没有回调
2020-10-15 - 怎样销毁缓存中的指定页面?
页面a点击导航菜单到另一页c,a还存在于缓存中,怎样在页面c中点击按键使页面a从缓存中清除
2020-10-14 - res.total返回值有限制没?
const db = wx.cloud.database() db.collection('todos').where({ _openid: 'xxx' // 填入当前用户 openid }).count().then(res => { console.log(res.total) })
2020-10-13 - skip作用是什么?
db.collection('todos').skip(10) .get() .then(console.log) .catch(console.error) ship(10)是从第10条记录往后开始显示吗?
2020-10-13 - 云数据库记录300,云函数查询100条,是按什么顺序排列?
是先查询前100,还是后100?
2020-10-12 - 用云函数调用二维码,有二维码生成,但是不跳转?
已解决
2020-10-11 - 一维数组怎样在wxml显示两元素?
[1,m,2,n,3,t]怎样在wxml中显示出 1 m 2 n 3 t
2020-10-02