如何在mongodb2.4上使用findByIdAndUpdate?

时间:2015-01-23 06:38:29

标签: mongodb backbone.js mongoose mongodb-query

骨干客户端更新模型属性:

ocase.save({ currentStep : theStep },callback);

服务器端mongoose代码:

OCase.findByIdAndUpdate(req.params.id,
        req.body, callback);

它在mongodb2.6上工作正常,但它在mongodb2.4上不起作用,错误是:

update err:MongoError: exception: Mod on _id not allowed

所以我尝试删除“_id”,只保存其他属性:

OCase.findByIdAndUpdate(req.params.id,
            {subject    : req.body.subject,
            description : req.body.description    
        },callback);

然后我又出了一个错误:

update err:TypeError: Cannot read property '_id' of undefined

我真的很困惑,我现在该怎么办?

最后,我必须首先查询(findById)文档,然后调用“save”方法进行更新。

OCase.findById(req.params.id,
        function(err,ocase){
            ocase.set(req.body);
            ocase.save(function(err,ocase){
                res.send(ocase);

            });
        });

1 个答案:

答案 0 :(得分:3)

通过添加$set运算符来解决它:

OCase.findByIdAndUpdate(req.params.id, {
        $set: {
            subject: req.body.subject,
            description: req.body.description,
            currentStep: req.body.currentStep
        }
    }, callback);