Để giới hạn các trường, bạn phải sử dụng các trường fields
tùy chọn (không biết về các bản cập nhật mới):
dbase.collection("customers").find({}, {
fields: { _id: 0 }
}).toArray(function(err, result) {
if (err) throw err;
console.log(result);
db.close();
});
CẬP NHẬT:
Đối với phiên bản> 3, bạn phải sử dụng projection
thay vào đó:
dbase.collection("customers").find({}, {
projection:{ _id: 0 }
}).toArray(function(err, result) {
if (err) throw err;
console.log(result);
db.close();
});