微信小程序云开发服务端数据库API 指定查询结果集数量上限
Collection.limit / Query.limit
指定查询结果集数量上限
方法签名如下:
function limit(max: number): Collection | Query
方法接受一个必填参数 max 用于定义最大结果集返回数量,上限 100
示例代码
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
exports.main = async (event, context) => {
try {
return await db.collection('todos').limit(10).get()
} catch(e) {
console.error(e)
}
}
中国· 上海
添加微信咨询
CopyRight©2009-2019 上海谷谷网络科技有限公司 All Rights Reserved. 沪ICP备11022482号-8
- top
- 在线咨询
-
添加微信咨询