使用mongoose

时间:2016-09-26 10:41:10

标签: javascript node.js mongodb mongoose

我非常感谢有关以下所述的一些帮助。问题是我想将keys增加一个,例如' eagle',熊'等。我的数据模型如下所示:

{
"_id" : ObjectId("57e134097a578b11eruogf0a2cb"),
"email" : "test3@example.com",
"password" : "$2a$10$KU8vmE./gewfuh3445ryh7hDC426k0Ttd2",
"userName" : "person",
"votedFor" : [],
"polls" : [ 
    {
        "items" : {
            "eagle" : 3,
            "bear" : 5,
            "lion" : 3,
            "giraffe" : 0,
            "elephant" : 0,
            "monkey" : 0,
            "gorilla" : 0,
            "dog" : 0,
            "cat" : 0
        },
        "_id" : ObjectId("57e39435erthytvf4c16149b3fcd"),
        "pollTitle" : "if you could be any animal, which one would you be?"
    }
]
}

以下是我未成功的尝试:

User.update({"polls._id":ObjectId("57e39435erthytvf4c16149b3fcd"),
"polls.items.bear":{$exists:true}}, {$inc:{"polls.$.items.bear":1}})

以上实际上与robomongo一起使用,但奇怪的是我的应用程序中没有。它实际上创建了一个新密钥:"__v" :

最新的尝试看起来像这样,更多的是拼命抓住整个文档并以繁琐的方式操纵它:

var pollItem = "bear", mongoose = require('mongoose'), 
pollID = "57e39435erthytvf4c16149b3fcd", 
id =   mongoose.Types.ObjectId(pollID);

User.findOne({"polls._id" :id},function(err,user){
             if(err){
              return err;
             }


             user.polls.forEach(function(poll){


               if(poll._id.valueOf() == pollID){

                var value = poll.items[pollItem];
                  poll.items[pollItem] = value + 1;
                  return poll;
               }
               return poll;
             })

            user.save(function(err){
              if(err){

                return (err);
              }
              console.log('successfully saved');
            })

           });

不幸的是,它似乎没有保存对文档的更改。如果有人能指出我正确的方向,我将非常感激。

1 个答案:

答案 0 :(得分:0)

我弄清楚了,似乎您需要引用document对象中query的每个级别,以便更新update对象中的正确字段。我试图找到这方面的文档,但我不能,所以这是一个假设,除非一些睿智的SO用户可以证实这是原因。这就是我的所作所为:

User.update({"_id":ObjectId("57e134097a578b11f060a2cb"),
"polls._id":ObjectId("57e39435c4af4c16149b3fcd"),
"polls.items.dog":{$exists:true}},
{$inc:{"polls.$.items.dog":1}})

希望这有助于某人。