फ़ील्ड को सीमित करने के लिए आपको fields
. का उपयोग करना होगा विकल्प (नए अपडेट के बारे में नहीं जानते):
dbase.collection("customers").find({}, {
fields: { _id: 0 }
}).toArray(function(err, result) {
if (err) throw err;
console.log(result);
db.close();
});
अद्यतन:
संस्करण> 3 के लिए आपको projection
. का उपयोग करना होगा इसके बजाय विकल्प:
dbase.collection("customers").find({}, {
projection:{ _id: 0 }
}).toArray(function(err, result) {
if (err) throw err;
console.log(result);
db.close();
});