指定查询结果集数量上限
支持端:小程序 , 云函数 , Web
指定查询结果集数量上限
limit 在小程序端默认及最大上限为 20,在云函数端默认及最大上限为 1000
db.collection("todos").limit(10)
.get()
.then(console.log)
.catch(console.error)
init在调用云开发各 API 前,需先调用初始化方法init一次(全局只需一次)init方法的定义如下:function init(options): voidini...
Collection.update / Query.update更新多条记录函数签名如下:function update(options: object): PromiseResult参数说明字段名...
Database云开发 SDK 数据库实例属性Commandcommand数据库操作符GeoGeo数据库地理位置结构方法Database.collection(name: string)...
Aggregate.skip(value: number):Aggregate支持端:小程序 2.7.4,云函数 0.8.1,Web聚合阶段。指定一个正整数,跳过对应数量的文档...
Command.eq(value: any):Command支持端:小程序,云函数,Web查询筛选条件,表示字段等于某个值。eq指令接受一个字面量 (literal)...