- 云函数条件查询时,openid:’{openid}‘返回了空数组,这是为什么呢?希望有人可以指导一下
JS: wx.cloud.callFunction({ name: 'userseat', data: { openid: '{OPENID}' }, success: function (res) { console.log('获取成功',res) }, fail: console.error }) }, 云函数 exports.main = async (event, context) => { var openid = event.openid try { return await db.collection("adminlist").where({ _openid: openid }).get() } catch (e) { console.log(e) } } 假如把{OPENID}换成实际的数字,运行起来就是一个有内容的结果。求助
2020-03-19 - 小白求助,在云开发数据库使用条件查询时,vlaue:XXX,这里的XXX能否为变量呢?
db.collection('adminlist').where({ _openid : userid }) .get({ success: function (res) { console.log(res) // res.data 是包含以上定义的两条记录的数组 that.setData({ userseat: res.data[0].seat }) } }) 这里的userid是通过获取openid方法获取的openid直接赋值的变量,是一个确定的字符串,但是似乎无法作用到这里 真心求助,希望有大牛可以指导一下我
2020-03-18 - 小白求助,在云开发数据库使用条件查询时,vlaue:XXX,这里的XXX能否为变量呢?
db.collection('adminlist').where({ _openid : userid }) .get({ success: function (res) { console.log(res) // res.data 是包含以上定义的两条记录的数组 that.setData({ userseat: res.data[0].seat }) } }) 这里的userid是通过获取openid方法获取的openid直接赋值的变量,是一个确定的字符串,但是似乎无法作用到这里
2020-03-18 - 小白求助,云开发数据库能否让用户也有读写功能呢?
开发了一个占座小程序,用户入座时要更改数据库数据,却发现座位表无法被除了创建者以外的用户更改,查了一下是因为openid的原因,不知道如何解决?希望有大牛可以帮帮我,指点一下
2020-03-18