19.查询所有价格大于指定的商品
2021-08-24 本文已影响0人
陈情令
![](https://img.haomeiwen.com/i24003789/e0b8864b2bac800a.png)
代码:
let db=wx.cloud.database();
const _=db.command;
db.collection("goods").where({price:_.gte(45)}).get().then(res=>{
console.log(res.data)
}).catch(err=>{
console.log(err)
})
代码:
let db=wx.cloud.database();
const _=db.command;
db.collection("goods").where({price:_.gte(45)}).get().then(res=>{
console.log(res.data)
}).catch(err=>{
console.log(err)
})