LoginSignup
5
5

More than 5 years have passed since last update.

MongoDB+mongooseでN件目〜M件目までを取りたい場合

Posted at

100件あるデータを1ページ10件ずつ表示するようなケースで
20件目から30件目のデータを引っ張りたい、という場合。

mongooseの初期化部分は飛ばします。
肝心の箇所のみ。

collection
  .find()
  .sort({'pubdate':'desc'})
  .skip(10)
  .limit(10)
  .exec(function(err, data) { 
    console.log(data);
  });

「skip」を差し込んでやればOK。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5