Database.collection
解释:获取云数据库指定名称的集合对象
参数
名称 | 类型 | 必须 | 说明 |
---|---|---|---|
name | String | 是 | 集合名称 |
返回值:Collection
代码示例
const cloud = require('swan-server-sdk')
exports.main = async (event, context) => {
cloud.init(context)
const db = cloud.database()
const coll = db.collection('articles')
}