最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Mongoose Model.update with dynamic field name - Stack Overflow

programmeradmin0浏览0评论

I'mtrying to pass field name as variable , here is what I tried but it's not working :

var update={};
update[req.body.field]=req.body.value;
Model.update(
    {"email":req.user.email},
    {$set:{update}},
    function (err,success) {
        if(err) return handleError(err);
    }
)

req.body.field contains the name of the field defined in the Model schema and req.body.value is the value I want to update with

I'mtrying to pass field name as variable , here is what I tried but it's not working :

var update={};
update[req.body.field]=req.body.value;
Model.update(
    {"email":req.user.email},
    {$set:{update}},
    function (err,success) {
        if(err) return handleError(err);
    }
)

req.body.field contains the name of the field defined in the Model schema and req.body.value is the value I want to update with

Share Improve this question asked Jul 24, 2016 at 3:29 user3711521user3711521 3055 silver badges14 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

You don't need update to be in braces, since it is already an object. Try:

var update={};
update[req.body.field]=req.body.value;
Model.update(
    {"email":req.user.email},
    {$set:update},
    function (err,success) {
        if(err) return handleError(err);
    }
)
发布评论

评论列表(0)

  1. 暂无评论