比如有条数据为
{ "id" :1, "name" : "name" , "a" : "a" , "b" : "b" } |
db.collection( 'todos' ).where({ id: 1 }).get({ success: function (res) { console.log(res.data) } }) |
如果我想返回的res数据中只有name和a的值,而不是全部返回,还要加什么查询条件吗,还是说使用服务器端查询,进行数据处理后再返回小程序端
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/database/collection.field.html 可以参考下field方法呢