小程序
小游戏
企业微信
微信支付
扫描小程序码分享
现在有多个input框来输入查询条件,请问当其中的一个或者多个input输入框输入的内容为空时,如何将为空的条件忽略掉,只进行其他非空条件的判断?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
title: { $regex: '.*' + this.data.title, }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
db.collection('store')
.where({
shenhe: true,
yonghu: {
$regex: '.*' + this.data.yonghu,
},
xinming: {
$regex: '.*' + this.data.xinming,
shushehao: {
$regex: '.*' + this.data.shushehao,
}
})
如果是空的,查询条件里面就没有这个字段不就可以了
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
title: { $regex: '.*' + this.data.title, }
db.collection('store')
.where({
shenhe: true,
yonghu: {
$regex: '.*' + this.data.yonghu,
},
xinming: {
$regex: '.*' + this.data.xinming,
},
shushehao: {
$regex: '.*' + this.data.shushehao,
}
})
如果是空的,查询条件里面就没有这个字段不就可以了