以下是开发者文档里的原话:
如果需要或
关系,可使用 [command.or]((reference-client-api/database/command.or))
但是这一行命令怎么用啊?
以下是我自己的“与”关系查询的代码
cloud.collection( '123' ).where({ phone:phone, num:num }).get({ success: function (res){ console.log(res)
|
这个问题我昨天正好研究了。因为没有通过mongodb,照搬写了竟然成功了。
db.collection(
""
).where({
// .where() 筛选条件
"$or"
: [{
"basic_id"
: 1 }, {
"basic_id"
: 2 }, {
"basic_id"
: 3 }]
// or条件
})
.get({
// .get() 获取集合 / 记录数据
success: res => {
},
fail: err => {
}
})