小程序
小游戏
企业微信
微信支付
扫描小程序码分享
各位大佬你们好,请问一下,我的需求是,从options里获取了一个title,然后我要做个判断,title是不是在我云数据库的news集合里,如果存在,我就不做操作,如果不在news集合里,就弹出模态框将该条信息存入数据库,如下图:
但是在判断该title是否在数据库里的时候,想的是isExits这个函数的返回值为true或者false,但是不知道查询语句怎么写,如下图:
所以想请各位大佬指点一下如何写查询的逻辑
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
isExits: function(titel,callback){ db.collection('news').where({ titel: titel }).count().then(res => { if(res.total){ callback && callback(res.total > 0) }else{ throw new Error(res) } }).catch(err => { throw new Error(err) }) }
--↓↓👍如果觉得有帮助的话请点个【有用】吧!
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
isExits: function(titel,callback){ db.collection('news').where({ titel: titel }).count().then(res => { if(res.total){ callback && callback(res.total > 0) }else{ throw new Error(res) } }).catch(err => { throw new Error(err) }) }
--↓↓👍如果觉得有帮助的话请点个【有用】吧!