使用MongooseJS更新文档中的多个字段

时间:2014-09-02 21:20:08

标签: mongoose

假设我有一个ABC模式,如下所示:

ABC = mongoose.Schema ({
    name: String
    , x: String
    , y: String
    , z: String
});

如果名称匹配,我想更新字段x和y。使用MongooseJS'更新'API可以实现这一点吗?

我尝试了以下操作并且无效:

ABC = mongoose.createConnection(uri).model('ABC', ABC)
...
ABC.findOne({'name': abc.name}).exec(function(err, found) {
    if(found) {
        ABC.update({'name':abc.name}, {'x':abc.x, 'y':abc.y}).exec();
    }
    ...
});

即使这是可能的,更新ABC对象并使用ABC.save(abc)更好吗?我在另一个线程中读到,更新比保存更好,因为它更安全。这是真的吗?

感谢任何建议!

1 个答案:

答案 0 :(得分:4)

是的,你可以更新多个字段,你只需要做这样的事情

ABC.update({ name: 'whatever' }, {
    x: 'value1',
    y: 'value2'
},
function(err, data) {
    if (err) {
    } else if (!data){
    } else {
        return res.send(200, data);
    }
});