微信小程序云开发API 指定返回结果中记录需返回的字段
2020-07-20 10:37 更新
Collection.field / Query.field / Document.field
支持端:小程序 , 云函数 , Web
指定返回结果中记录需返回的字段
参数
projection: Object
返回值
Collection
说明
方法接受一个必填对象用于指定需返回的字段,对象的各个 key 表示要返回或不要返回的字段,value 传入 true|false(或 1|-1)表示要返回还是不要返回。
示例代码
只返回 description, done 和 progress 三个字段:
db.collection('todos').field({
description: true,
done: true,
progress: true,
})
.get()
.then(console.log)
.catch(console.error)
以上内容是否对您有帮助:
更多建议: