小程序云查询结果按要求出结果
db.collection(‘Renwu’).limit(10).where({
fanwei: _.eq(res.data)
})
.get({
success: function (res) { console.log(res) }
这样是返回10条记录,可我还要求这些记录按价格从高到底排列,怎么做呢?
就是要返回10条按价格从高到底排列的记录。
db.collection(‘Renwu’).limit(10).where({
fanwei: _.eq(res.data)
})
.get({
success: function (res) { console.log(res) }
这样是返回10条记录,可我还要求这些记录按价格从高到底排列,怎么做呢?
就是要返回10条按价格从高到底排列的记录。