Untuk membatasi bidang, Anda harus menggunakan fields
opsi (tidak tahu tentang pembaruan baru):
dbase.collection("customers").find({}, {
fields: { _id: 0 }
}).toArray(function(err, result) {
if (err) throw err;
console.log(result);
db.close();
});
PEMBARUAN:
Untuk versi> 3 Anda harus menggunakan projection
sebagai gantinya:
dbase.collection("customers").find({}, {
projection:{ _id: 0 }
}).toArray(function(err, result) {
if (err) throw err;
console.log(result);
db.close();
});