我有一个看起来有点像的模式:
var postSchema = new Schema({
created: { type: Date, default: Date.now },
updated: { type: Date, default: Date.now },
comments: { type: [Schema.ObjectId], ref: 'Comment' }
});
所以我的评论集合是引用我的评论模式/集合的对象 id 的集合。
我需要在查询时删除其中一些,所以我正在尝试这个:
var comments = [1, 2, 4];
Post.update({ _id: post_id}, {'$pullAll': {comments: comments }})
.exec(function(err) {
// How to remove documents with 1, 2, 4 ids from a Comment collection properly
});
执行上面的代码后,我从 Post.comments 中删除了评论 ID,但我还需要从“评论”集合中删除这些评论。我该怎么做?
编辑:我怎样才能获得实际上没有被删除的文档的 ID。简单的例子:
Post.comments = [1, 2, 3];
Post.update({ _id: post_id}, {'$pullAll': {comments: [1,2]}});
在上面的代码中 Post.comments 只有 1,2,3,但我们试图拉 [1,2],所以我需要知道 Post.comments 中不存在 id=3 并且我不需要将其从“评论”集合中删除。