在 Mongoose 模型中,用户给定的文档如下所示:

> db.users.find().pretty()
{
    /* ... */
    "events" : [
        {
            "_id" : ObjectId("537bb2faf87f9a552c3219ea"),
            "message" : "Foo"
        },
        {
            "_id" : ObjectId("537bb436c3b9a1aa2db71b7c"),
            "message" : "Bar"
        },
        {
            "_id" : ObjectId("537bb4ab2cc503e52e24d145"),
            "message" : "Biz"
        },
        {
            "_id" : ObjectId("537bb4d02cc503e52e24d146"),
            "message" : "Pop"
        }


]

}

某些函数将事件_id 作为参数,并且必须从 MongoDB 中删除响应此 _id 的对象。我试过了:
User
    .findByIdAndUpdate(req.user._id, {
        $pull: {events: {
            $elemMatch: {_id: _eventId}   //_eventId is string representation of event ID
        }}
    }, function(err) {
        // ...
    });

它不工作。我究竟做错了什么?

最佳答案

来自 SERVER-2016 的引用:



因此,只需在没有 $elemMatch 的情况下执行您的查询:

User
    .findByIdAndUpdate(req.user._id, {
        $pull: {events: {
            _id: _eventId   //_eventId is string representation of event ID
        }}
    }, function(err) {
        // ...
    });

关于node.js - 在 Mongoose 中通过给定的 _id 从数组中删除对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23794640/

10-12 21:53