mongoose,使用查找选择特定字段

我正在尝试仅选择一个特定的领域

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,我的文档架构只有两个字段,_id和name

[{"_id":70672,"name":"SOME VALUE 1"},{"_id":71327,"name":"SOME VALUE 2"}]

为什么???

回答:

_id除非您明确排除该字段,否则该字段始终存在。使用以下-语法:

exports.someValue = function(req, res, next) {

//query with mongoose

var query = dbSchemas.SomeValue.find({}).select('name -_id');

query.exec(function (err, someValue) {

if (err) return next(err);

res.send(someValue);

});

};

或通过对象显式:

exports.someValue = function(req, res, next) {

//query with mongoose

var query = dbSchemas.SomeValue.find({}).select({ "name": 1, "_id": 0});

query.exec(function (err, someValue) {

if (err) return next(err);

res.send(someValue);

});

};

以上是 mongoose,使用查找选择特定字段 的全部内容, 来源链接: utcz.com/qa/426793.html

回到顶部