我试图将元素插入 Mongoose 的数组。我正在用update和$ push来做。但是它不会在数据库中更新它。这是我的代码。
route.js:

    var Chooser = require('../chooser');

    var appRouter = function(app) {

    app.put("/chooser/:id", function(req, res) {
    console.log("ID: ", req.params.id);
    if (!req.body.toFollow) {
        return res.send({"status": "error", "message": "The account that you want to follow is needed"});
    }
    else {
        console.log("Cuenta: ", req.body.toFollow);
        Chooser.update({_id: req.params.id}, {$push: {accounts: {"name": "foo", "idAccount": 123456}}});
        return res.send({"status": "ok"});
    }

  });
}

这是我的 Mongoose 模式。 Chooser.js:
var mongoose = require('mongoose');

var chooserSchema = mongoose.Schema({
_id: Number,
accounts: [{name: String, idAccount: Number}]
}, { _id: false });

var Chooser = mongoose.model('Chooser', chooserSchema);

module.exports = Chooser;

最佳答案

据我所知,您必须执行以下操作。

Model.findAndUpdate({_id: 'your_id'},
                    {$push: {'your_array_field':
                    {"name": "foo","idAccount": 123456}}},
                    {new: true}, (err, result) => {
                    // Rest of the action goes here
                   })

09-25 16:50