实际中,要动态地确定查询数据库表中的某个字段。例如示例文档中:const _ = db.commanddb.collection('todos').where(_.or([
{ progress: _.lte(50)
},
{ style: { color: _.in(['white', 'yellow'])
}
}
]))
.get({
success(res) { console.log(res.data)
}
})能否 var field1=‘progress’;
然后表达式中 progress:_.lte(50),换成类似field1:_.lte(50),这种该如何实现啊?
微信小程序开发问题解答
微信小程序开发者回答:
非常感谢!
微信小程序开发者回答:
[field1]:_.lte(50)
本文网址:http://www.91bianli.com/weixinxiaochengxu/762.html