ฉันพยายามเลือกเฉพาะฟิลด์ที่เฉพาะเจาะจงด้วย
exports.someValue = function(req, res, next) {
//query with mongoose
var query = dbSchemas.SomeValue.find({}).select('name');
query.exec(function (err, someValue) {
if (err) return next(err);
res.send(someValue);
});
};
แต่ในการตอบกลับ json ของฉันฉันได้รับ _id สคีมาเอกสารของฉันมีเพียงสอง fiels _id และชื่อ
[{"_id":70672,"name":"SOME VALUE 1"},{"_id":71327,"name":"SOME VALUE 2"}]
ทำไม???
.select
เป็นเพียงตัวกรองสำหรับเลือกฟิลด์หลังจากที่คุณได้รับทั้งหมดแล้วคำแนะนำของฉันคือใช้.find({}, 'name -_id')