微信小程序开发文档 SDK数据库 database·获取集合的引用

2024-02-25 开发教程 微信小程序开发文档 匿名 3

Database.collection(name: string): Collection

支持端:小程序 , 云函数 , Web

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

参数

name: string

集合名称

返回值

Collection

示例代码:小程序端

const db = wx.cloud.database()
const todosCollection = db.collection('todos')

示例代码:云函数端

const cloud = require('wx-server-sdk')
cloud.init({
env: cloud.DYNAMIC_CURRENT_ENV
})
const db = cloud.database()
const todosCollection = db.collection('todos')