更新Mongoose中的文档(更新特定索引处的数组属性)

时间:2017-10-19 17:57:04

标签: javascript node.js mongodb mongoose

我目前正在练习我的node.js技能,而且我正在用户的个人资料页面上制作一个top10电影列表。用户选择了十部电影,现在我想将这些电影保存在我的数据库中的用户文档中。但是,这个数组仍然是空的(我能够将' pick'属性更改为true)。谁能告诉我为什么?这是服务器端的代码:

router.get('/updateTop10', function (req, res, next) {

    // the string that I want to add to the db array
    var movieElement = req.query.movieElement;

    // the specific index of the array (the position of the movie in the top10
   var index = req.query.index;

   // the user that is currently logged in
   var user = req.user;


   User.findOne({'username': user.username }, function (err, user) {
       // I am able to switch picked to true
       user.top10.picked = true;

       // However my array is still empty after I run the code
       user.top10.top10[index] = movieElement ;

       user.save();
       res.send("SUCCESS")
   } )
});

这是用户文档的结构:

This is the structure of the user document:

1 个答案:

答案 0 :(得分:1)

参考https://github.com/Automattic/mongoose/issues/2654 这样做

 user.top10.top10.set(index, movieElement);