云函数条件查询时,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}换成实际的数字,运行起来就是一个有内容的结果。求助