猫鼬删除文档中的数组元素并保存


77

我的模型文档中有一个数组。我想根据我提供的密钥删除该数组中的元素,然后更新MongoDB。这可能吗?

这是我的尝试:

var mongoose = require('mongoose'),
    Schema = mongoose.Schema;

var favorite = new Schema({
    cn: String,
    favorites: Array
});

module.exports = mongoose.model('Favorite', favorite, 'favorite');

exports.deleteFavorite = function (req, res, next) {
    if (req.params.callback !== null) {
        res.contentType = 'application/javascript';
    }
    Favorite.find({cn: req.params.name}, function (error, docs) {
        var records = {'records': docs};
        if (error) {
            process.stderr.write(error);
        }
        docs[0]._doc.favorites.remove({uid: req.params.deleteUid});

        Favorite.save(function (error, docs) {
            var records = {'records': docs};
            if (error) {
                process.stderr.write(error);
            }
            res.send(records);

            return next();
        });
    });
};

到目前为止,它可以找到文档,但是删除或保存仍然有效。

Answers:


122

您也可以直接在MongoDB中进行更新,而不必加载文档并使用代码对其进行修改。使用$pull$pullAll运算符从数组中删除该项目:

Favorite.updateOne( {cn: req.params.name}, { $pullAll: {uid: [req.params.deleteUid] } } )

(您也可以将updateMany用于多个文档)

http://docs.mongodb.org/manual/reference/operator/update/pullAll/


6
我不知道这是如何从收藏夹数组(子数组而不是文档)中删除项目的,而没有任何引用收藏夹的名称
Dominic,

同样,该操作是原子的。这意味着文档将无法在单独的查找和更新操作之间进行更改。
詹姆斯

1
谢谢!非常优雅的解决方案。
Miguel Lara

61

选中的答案确实有效,但是正式在MongooseJS中最新,您应该使用 pull

doc.subdocs.push({ _id: 4815162342 }) // added
doc.subdocs.pull({ _id: 4815162342 }) // removed

https://mongoosejs.com/docs/api.html#mongoosearray_MongooseArray-pull

我也只是在抬头。

请参阅丹尼尔的答案以获取正确答案。好多了。


@LondonRob +1进行了很好的编辑,我们应注意不要一般使用不安全的链接。
杰森·塞布林

这就是我所需要的!它干净易用,并且可以与其他模型中的ref一起使用
-tarafenton

14

上面的答案显示了如何删除数组,以及如何从数组中拉出对象。

参考:https : //docs.mongodb.com/manual/reference/operator/update/pull/

db.survey.update( // select your doc in moongo
    { }, // your query, usually match by _id
    { $pull: { results: { $elemMatch: { score: 8 , item: "B" } } } }, // item(s) to match from array you want to pull/remove
    { multi: true } // set this to true if you want to remove multiple elements.
)

5

由于收藏夹是一个数组,因此只需要将其剪接并保存文档即可。

var mongoose = require('mongoose'),
    Schema = mongoose.Schema;

var favorite = new Schema({
    cn: String,
    favorites: Array
});

module.exports = mongoose.model('Favorite', favorite);

exports.deleteFavorite = function (req, res, next) {
    if (req.params.callback !== null) {
        res.contentType = 'application/javascript';
    }
    // Changed to findOne instead of find to get a single document with the favorites.
    Favorite.findOne({cn: req.params.name}, function (error, doc) {
        if (error) {
            res.send(null, 500);
        } else if (doc) {
            var records = {'records': doc};
            // find the delete uid in the favorites array
            var idx = doc.favorites ? doc.favorites.indexOf(req.params.deleteUid) : -1;
            // is it valid?
            if (idx !== -1) {
                // remove it from the array.
                doc.favorites.splice(idx, 1);
                // save the doc
                doc.save(function(error) {
                    if (error) {
                        console.log(error);
                        res.send(null, 500);
                    } else {
                        // send the records
                        res.send(records);
                    }
                });
                // stop here, otherwise 404
                return;
            }
        }
        // send 404 not found
        res.send(null, 404);
    });
};

感谢您的全面答复。
occasl

4
如果您尝试同时删除2件东西,它们都可能会得到数组,然后进行更改,并且保存的第一个更改将被第二个覆盖。我宁愿像这样stackoverflow.com/questions/16959099/…
Maximosaic 2013年

3

这为我工作,真的很有帮助。

SubCategory.update({ _id: { $in:
        arrOfSubCategory.map(function (obj) {
            return mongoose.Types.ObjectId(obj);
        })
    } },
    {
        $pull: {
            coupon: couponId,
        }
    }, { multi: true }, function (err, numberAffected) {
        if(err) {
            return callback({
                error:err
            })
        }
    })
});

我有一个模型,名称是SubCategory,我想从此类别Array中删除Coupon。我有很多类别,所以我用过arrOfSubCategory。因此,我在$in操作员的帮助下使用map函数从该数组中获取了对象的每个数组。


2
keywords = [1,2,3,4];
doc.array.pull(1) //this remove one item from a array
doc.array.pull(...keywords) // this remove multiple items in a array

如果你想使用 ...,应'use strict';在js文件顶部调用;:)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.