# Collection.skip(offset: number): Collection

指定查询返回结果时从指定序列后的结果开始返回,常用于分页

# 参数

offset: number

# 返回值

Collection

# 示例代码

db.collection('todos').skip(10)
  .get()
  .then(console.log)
  .catch(console.error)
1
2
3
4