我正在使用REST API,我需要能夠通過MongoDB頁面,從我所瞭解的光標是最好的方式來做到這一點。我可以獲取遊標,但是如何序列化它以將其發送到客戶端?以及服務器在返回時如何反序列化並查詢它?這甚至有可能嗎?如何使用node-mongodb-native遊標在Mongodb中進行分頁?
collection.find({}, function(err, cursor) {
if (err) { console.log("Error in find: " + err); return;}
cursor.each(function(err, item) {
if (err) { throw err;
}
if (!item) {
console.log("All done");
} else {
console.log(sys.inspect(item));
}
});
});
問候,