javascript
this.$db.collection("opendb-admin-menus").where({
enable:true
})
.get().then(res=>{
console.log(res.result.data)
})
我想再加一条条件:sort>1000的条件该怎么加呀
javascript
this.$db.collection("opendb-admin-menus").where({
enable:true
})
.get().then(res=>{
console.log(res.result.data)
})
我想再加一条条件:sort>1000的条件该怎么加呀
1 个回复
m***@qq.com (作者) - 猛男H5
果然问人不如自己找,解决了
dbCmd.gt