「Node.js」skip()とlimit()でMongodbのコレクションのデータを取得する

2020年11月23日

構文
dbo.collection(xxx).find().skip(xx).limit(xx)

サンプルコード

var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/";
 
MongoClient.connect(url, { useNewUrlParser: true }, function(err, db) {
    if (err) throw err;
    var dbo = db.db("testdb");
    dbo.collection("testcollect").find().skip(2).limit(2).toArray(function(err, result) {
        if (err) throw err;
        console.log(result);
        db.close();
  });
});

 

Node.js

Posted by arkgame