小程序
小游戏
企业微信
微信支付
扫描小程序码分享
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/getting-started.html
各位前辈大家好,我想请问一下,获取云数据库中数据可以获取某一类数据吗?
例如数据库列表中有一条数据含有的字段为radio,而其他数据没有,我应该如何获取含有该字段的数据呢?
望各位前辈不吝赐教,感谢!
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
where 设置查询条件就行
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/collection/Collection.where.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.exists.html
where({
data:{
radio:_.exists(true)
}
})
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
where 设置查询条件就行
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/collection/Collection.where.html
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.exists.html
where({
data:{
radio:_.exists(true)
}
})