var totall;

var a = db.db("Magiccat").collection("jishi_content").find().count({}, function(err, res) {
if (err) {
console.log('error' + err);
return;
}
totall = res;
});
dbo.collection("jishi_content").find().skip(2).limit(limit).toArray(function(err, data) {
if (err) throw err;
callback(data);
db.close();
});

相关文章:

  • 2021-09-29
  • 2022-02-28
  • 2022-02-15
  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-10
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2022-12-23
  • 2021-10-18
相关资源
相似解决方案