代码如下:
appid:wx9add72c0d90fcb13
——————————————————————————————————————————
onLoad: function (options) {
const db = wx.cloud.database()
// 查询当前用户所有的 counters
db.collection('location').where({
description:'this is a demo3'
}).get({
success: res => {
this.setData({
queryResult: JSON.stringify(res.data, null, 2)
})
console.log('[数据库] [查询记录] 成功: ', res)
},
fail: err => {
wx.showToast({
icon: 'none',
title: '查询记录失败'
})
console.error('[数据库] [查询记录] 失败:', err)
}
})
},
查看下集合的权限问题