小程序
小游戏
企业微信
微信支付
扫描小程序码分享
云开发中如果这个操作符不传参数的话获取的是哪一种,在本地测试了不写的话不报错,然后也没有返回记录,不懂这个什么意思,纠结。。
exports.main = async (event, context) => { return await db.collection('todos').where({ title: _.exists() }).get() }
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.exists.html
exists 检查字段是否存在 return db.collection('todos').where({ title: _.exists(true) }).get().then(res => { return res }).catch(err => { console.log(err) throw new Error(err) }) 返回存在title字段的记录 return db.collection('todos').where({ title: _.exists(false) }).get().then(res => { return res }).catch(err => { console.log(err) throw new Error(err) }) 返回不存在title字段的记录
跑一下试试
--↓↓👍如果觉得有帮助的话请点个【有用】吧!
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.exists.html
exists 检查字段是否存在 return db.collection('todos').where({ title: _.exists(true) }).get().then(res => { return res }).catch(err => { console.log(err) throw new Error(err) }) 返回存在title字段的记录 return db.collection('todos').where({ title: _.exists(false) }).get().then(res => { return res }).catch(err => { console.log(err) throw new Error(err) }) 返回不存在title字段的记录
跑一下试试
--↓↓👍如果觉得有帮助的话请点个【有用】吧!