# Database.collection(name: string): Collection

获取集合的引用。方法接受一个 name 参数,指定需引用的集合名称。

# 参数

name: string 集合名称

# 返回值

Collection

示例代码

const cloud = require('qq-server-sdk')
cloud.init({
  env: cloud.DYNAMIC_CURRENT_ENV
})
const db = cloud.database()
const todosCollection = db.collection('todos')
1
2
3
4
5
6