基础
开发指引
小程序端SDK
服务端SDK
初始化
常量
云函数
文件存储
工具类
数据库
Database
Document
Collection
Command
AggregateCommand
Geo
获取集合的引用。方法接受一个 name 参数,指定需引用的集合名称。
name: string 集合名称
示例代码
const cloud = require('qq-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV }) const db = cloud.database() const todosCollection = db.collection('todos')
← (index) createCollection →