是否可以使find()和findOne()方法仅返回模式字段

时间:2015-02-09 13:04:35

标签: javascript mongoose

我在文档和网络上搜索了一个选项,但我没有找到任何答案,所以让我们问这个问题。

为什么要运行以下代码:

var accountSchema = mongoose.Schema({
    id :            { type:Number, unique:true },
    login :         { type:String, unique:true, index:true },
    password :      String,
    usedBySession : String
});
var account = mongoose.model('Account', accountSchema);

account.findOne({id:1}).exec()
    .then(function(result){
        console.log(result);
    },function(err){
        throw err;
    });

我获取所有字段(使用_id)而不是我的架构字段?服务器响应低于。

{"__v":0,"_id":"538deecb900f64d43163759a","id":1,"login":"dbyzero","password":"f71dbe52612345678907ab494817525c6"}

如果没有选项,清除响应的最简洁方法是什么?

1 个答案:

答案 0 :(得分:1)

按以下方式排除不必要的字段:

account.findOne({id: 1}, '-_id -__v -password') // exclude _id, __v, password fields
    .exec()
    .then(success, failure);

More info

或在Schema中使用select选项

var yourSchema = new Schema({
   secure: {
       type: String,
       select: false // 'secure' field will not be selected by default
   },
   public: String
});

More info