.find()
カーソル
を返します 作業するオブジェクト。興味があるのが配列内のすべての結果を取得することだけである場合は、次のことができます。
collection.find().toArray(function(err, docs) {
console.log(docs);
});
ただし、カーソルを繰り返すこともできます:
collection.find().each(function(err, doc) {
//called once for each doc returned
});