17

是否可以使用 Mongoose 一次性在(子)文档上设置多个属性?我正在尝试做的一个例子:

假设我有这个架构:

var subSchema = new Schema({
    someField: String,
    someOtherField: String
});

var parentSchema = new Schema({
    fieldOne: String,
    subDocs: [subSchema]
})

然后我想做:

exports.updateMyDocument = function(req, res) {
    var parentDoc = req.parentDoc; // The parent document. Set by parameter resolver.
    var document = req.myDoc; // Sub document of parent. Set by parameter resolver.
    var partialUpdate = req.body; // updated fields sent as json and parsed by body parser
    // I know that the statement below doesn't work, it's just an example of what I would like to do.
    // Updating only the fields supplied in "partialUpdate" on the document
    document.update(partialUpdate); 
    parentDoc.save(function(err) {
        if(err) {
            res.send(500);
            return;
        }
        res.send(204);
    }); 
};

通常,我可以使用运算符来实现这一点$set,但我的问题是,document在这个例子中是parentDoc. 所以当我试图做

Parent.update({_id: parentDoc._id, "subDocs._id": document._id}, 
    {$set: {"subDocs.$" : partialUpdate}}, 
    function(err, numAffected) {});

它替换了由 标识的子文档实例subDocs._id。目前我已经通过手动设置字段来“解决”它,但我希望有更好的方法来做到这一点。

4

4 回答 4

37

$set基于 的字段以编程方式构建对象,partialUpdate以使用点表示法仅更新这些字段:

var set = {};
for (var field in partialUpdate) {
  set['subDocs.$.' + field] = partialUpdate[field];
}
Parent.update({_id: parentDoc._id, "subDocs._id": document._id}, 
    {$set: set}, 
    function(err, numAffected) {});
于 2013-04-08T14:03:34.560 回答
7

我在 REST 应用程序中做了不同的事情。

首先,我有这条路线:

router.put('/:id/:resource/:resourceId', function(req, res, next) {
    // this method is only for Array of resources.
    updateSet(req.params.id, req.params.resource, req, res, next);
});

updateSet()方法

function updateSet(id, resource, req, res, next) {
    var data = req.body;
    var resourceId = req.params.resourceId;

    Collection.findById(id, function(err, collection) {
        if (err) {
            rest.response(req, res, err);
        } else {
            var subdoc = collection[resource].id(resourceId);

            // set the data for each key
            _.each(data, function(d, k) {
              subdoc[k] = d;
            });

            collection.save(function (err, docs) {
              rest.response(req, res, err, docs);
            });
        }
    });
}

精彩的部分是 mongoose 将验证您是否为此子文档data定义了。Schema此代码对文档的任何数组资源都有效。为简单起见,我没有显示所有数据,但这是检查这种情况并正确处理响应错误的好习惯。

于 2015-02-20T14:55:16.040 回答
2

您可以分配或扩展嵌入文档。

    Doc.findOne({ _id: docId })
    .then(function (doc) {
      if (null === doc) {
        throw new Error('Document not found');
      }

      return doc.embeded.id(ObjectId(embeddedId));
    })
    .then(function(embeddedDoc) {
      if (null === embeddedDoc) {
        throw new Error('Embedded document not found');
      }

      Object.assign(embeddedDoc, updateData));
      return embeddedDoc.parent().save();
    })
    .catch(function (err) {
      //Do something
    });

在这种情况下,您应该确定 _id 没有分配。

于 2015-11-19T00:00:08.030 回答
0

我在不使用 $set 对象的情况下以稍微不同的方式处理了这个问题。我的方法与 Guilherme 的方法类似,但一个不同之处在于我将我的方法包装到了静态功能中,以便在整个应用程序中更容易重用。下面的例子。

在 CollectionSchema.js 服务器模型中。

collectionSchema.statics.decrementsubdocScoreById = function decreasesubdoc (collectionId, subdocId, callback) {
  this.findById(collectionId, function(err, collection) {
    if (err) console.log("error finding collection");
    else {
      var subdoc = collection.subdocs.filter(function (subdoc) {
        return subdoc._id.equals(subdocId);
      })[0];

      subdoc.score -= 1;

      collection.save(callback);
    }
  });
};

在服务器控制器中

Collection.decrementsubdocScoreById(collectionId, subdocId, function  (err, data) {
  handleError(err);
  doStuffWith(data);
});
于 2016-11-06T17:00:36.567 回答