使用Mean Stack中的REST API在JSON中更新子数组

时间:2017-05-01 04:16:21

标签: json node.js mongodb express mongoose

我正在开发一个MEAN堆栈应用程序,我已经知道如何实际更新已经保存到MongoDB中的文档了。我已经看到我必须在我的REST API路径中使用patch而不是post,但它对我来说仍然有些阴影。我想在User JSON中的Package JSON数组中插入一个新的Package。

可能Duplicate,但他覆盖了数组中的值而没有向其中添加新对象。

我的JSON架构:

//User schema
const UserSchema = mongoose.Schema({
  name: {
    type: String
  },
  email: {
    type: String,
    require: true
  },
  username:{
    type:String,
    required: true
  },
  password:{
    type:String,
    required: true
  },
  packages: [{
    from: String,
    to: String,
    tracking: String

  }]
});

我的REST API路径

//Update
router.patch('/update', (req, res) => {
  const username = req.body.username;
  const packages = req.body.packages;

  User.getUserByUsername(username, (err, user) => {
    if(!user){
      return res.json({success: false, msg: 'User not found'});
    } else {
      User.addPackages(user, req.body.packages, (err, user) => {
        if(err){
          res.json({success: false, msg:'Failed to update packages'});
        } else {
          res.json({success: true, msg:'update packages'});
        }
      })
    }
  });
});

我的模块:

module.exports.addPackages = function(user, packages, callback){
  User.findOneAndUpdate(
    {username:user.username},
    {$push: {"packages" : {
      "to" : packages.to,
      "from" : packages.from,
      "tracking" : packages.tracking
    }}},
    {new:true},
    function(err, newPackage){
      if (err) throw err;
    });
}

module.exports.getUserById = function(id, callback){
  User.findById(id, callback);
}

module.exports.getUserByUsername = function(username, callback){
  const query = {username: username}
  User.findOne(query, callback);
}

他们正在更新我的MongoDB,但只是对象ID,而不是值......

1 个答案:

答案 0 :(得分:1)

db.your_collection.update({},
                          {$set : {"new_field":1}},
                          {upsert:false,
                          multi:true})