我正在使用node.js执行Mongodb collection.find,如何只将没有列名的数据返回到数组中。
var cursor = collection.find( { title: title }, { title: 1, _id: 0 });
cursor.sort( { title: 1 });
cursor.toArray(function (err, all_documents) { .... });
{"title":"MongoDB Overview"} {"title":"NoSQL Overview"} {"title":"Tutorials Point Overview"}
答案 0 :(得分:1)
collection.find(...).toArray().map( function(u) { return u.title; } )
或
var result = []
collection.find().forEach(function(u) { result.push(u.title) })