Transaction.collection(name: string): Collection

支持端:云函数

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

参数

name: string

集合名称

返回值

Collection

集合引用

注意事项

在事务中仅能进行单记录操作,也就是不能使用 whereaggregate 接口,可以使用的接口如下:

  1. collection 获取集合引用
  2. |-- add 新增记录
  3. |-- doc 获取记录引用
  4. |-- get 获取记录内容
  5. |-- update 更新记录内容
  6. |-- set 替换记录内容
  7. |-- remove 删除记录