在猫鼬中删除多对多参考

在猫鼬中删除多对多参考,第1张

在猫鼬中删除多对多参考

您正在为此使用

'remove'
中间件。在中间件功能中,
this
是否删除了组实例,您可以通过其
model
方法访问其他模型。因此,您可以执行以下 *** 作:

GroupSchema.pre('remove', function(next){    this.model('User').update(        {_id: {$in: this.users}},         {$pull: {groups: this._id}},         {multi: true},        next    );});

或者,如果您要支持

users
组实例中的字段可能不完整的情况,则可以执行以下 *** 作:

GroupSchema.pre('remove', function(next){    this.model('User').update(        {groups: this._id},         {$pull: {groups: this._id}},         {multi: true},        next    );});

但正如WiredPrairie所指出的那样,对于此选项,您需要一个索引

groups
才能获得良好的性能。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5127116.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存