微信小程序云开发服务端数据库API Collection.skip
Collection.skip / Query.skip
指定查询返回结果时从指定序列后的结果开始返回,常用语分页
方法签名如下:
function skip(offset: number): Collection | Query
示例代码
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
exports.main = async (event, context) => {
try {
return await db.collection('todos').skip(10).get()
} catch(e) {
console.error(e)
}
}
中国· 上海
添加微信咨询
CopyRight©2009-2019 上海谷谷网络科技有限公司 All Rights Reserved. 沪ICP备11022482号-8
- top
- 在线咨询
-
添加微信咨询