基本查询
// 获取数据库引用
const db = wx.cloud.database()
// 获取集合引用
const collection = db.collection('yourCollectionName')
// 基本查询示例,查询字段 field1 等于 'value1' 的文档
collection.where({
field1: 'value1'
}).get()
.then(res => {
console.log('查询结果', res.data)
})
.catch(err => {
console.error('查询失败', err)
})
请将 'yourCollectionName' 替换为你实际要操作的集合名称。在上述示例中,使用了 where 方法构建了一个基本的查询条件,查询字段 field1 等于 'value1' 的文档。
复杂查询
// 复杂查询示例,查询字段 field1 大于 10,且 field2 包含 'keyword' 的文档
collection.where({
field1: db.command.gt(10),
field2: db.command.regex({
regexp: 'keyword',
options: 'i' // 表示不区分大小写
})
}).get()
.then(res => {
console.log('查询结果', res.data)
})
.catch(err => {
console.error('查询失败', err)
})
在这个示例中,使用了 db.command.gt 来表示大于的条件,以及 db.command.regex 来表示正则表达式的条件。你可以根据需要组合多个条件。
这些只是构建查询条件的基本示例,你可以根据实际需求使用不同的查询条件来获取你想要的数据。确保你的小程序具备云开发的权限,并且已经开启了相应的环境。
转载请注明出处:http://www.pingtaimeng.com/article/detail/5921/微信小程序