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

标签 javascript node.js mongodb mongoose

我目前正在练习我的 Node.js 技能,并且正在用户的个人资料页面上制作前 10 名的电影列表。用户选择了十部电影,现在我想将这些电影保存在数据库的用户文档中。然而,这不起作用,数组仍然是空的(尽管我能够将“picked”属性更改为 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:

最佳答案

引用https://github.com/Automattic/mongoose/issues/2654 这样做

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

关于javascript - 更新 Mongoose 中的文档(更新特定索引处的数组属性),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46836096/

相关文章:

javascript - 将值设置为嵌套对象在 Angular 中不起作用

mongodb - phalcon 0.6.0 ODM (object-document mapper) for MongoDB 我该如何使用?

javascript - 检查 DIV 相对于浏览器屏幕的位置 - jQuery

javascript - Twitch API v5——查看主播是否直播

javascript - 如何通过 Javascript 使用 JSON 数据

node.js - Babel 7 中的外部导入不会被转译

javascript - 使用 Passport.js 的 Google+ 用户年龄范围

mongodb 乘法聚合运算符

java - MongoDB 太多打开的连接

javascript - 更改 Img 属性并填充数组错误