Collection.field
指定获取文档数据返回字段结构
参数
名称 | 类型 | 必须 | 说明 |
---|---|---|---|
projection | Object | 是 | 文档返回字段结构 |
返回值:Collection
代码示例
const cloud = require('swan-server-sdk')
exports.main = async (event, context) => {
cloud.init(context)
const db = cloud.database()
try {
return await db.collection('articles').field({
title: true,
status: true,
}).get()
}
catch(err) {
console.log(err)
}
}