- 当前 Bug 的表现(可附上截图)
无法查询到云平台手动添加的数据
const db = wx.cloud.database()
db.collection('wx_user').where({
}).get({
success: function (res) {
// 输出 [{ "title": "The Catcher in the Rye", ... }]
console.log(res)
}
})
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
框架类型 | 问题类型 | 终端类型 | AppID | 基础库版本 |
---|---|---|---|---|
小程序 | Bug | 工具 | wx4f8d0eb312c7fc21 | 2.2.5 |
2 个回答
云平台手手动添加的数据需要带上_openid字段,这样接口才能查询到
权限是不是正确呢。
返回的结果中含有通过接口添加的数据,但是在云平台添加的数据没有返回