11

我有两个模型:

App.User = DS.Model.create({
  comments: DS.hasMany('App.Comment')
});

App.Comment = DS.Model.create({
  user: DS.belongsTo('App.User')
});

当一个用户被删除时,它也会删除它在后端的所有评论,所以我应该从客户端身份映射中删除它们。

我从另一个地方列出了系统上的所有评论,所以在删除用户后它只会崩溃。

有没有办法指定这种对关联的依赖?谢谢!

4

3 回答 3

9

当我想实现这种行为时,我会使用 mixin。我的模型定义如下:

App.Post = DS.Model.extend(App.DeletesDependentRelationships, {
    dependentRelationships: ['comments'],

    comments: DS.hasMany('App.Comment'),
    author: DS.belongsTo('App.User')
});

App.User = DS.Model.extend();

App.Comment = DS.Model.extend({
    post: DS.belongsTo('App.Post')
});

mixin 本身:

App.DeletesDependentRelationships = Ember.Mixin.create({

    // an array of relationship names to delete
    dependentRelationships: null,

    // set to 'delete' or 'unload' depending on whether or not you want
    // to actually send the deletions to the server
    deleteMethod: 'unload', 

    deleteRecord: function() {
        var transaction = this.get('store').transaction();
        transaction.add(this);
        this.deleteDependentRelationships(transaction);
        this._super();
    },

    deleteDependentRelationships: function(transaction) {
        var self = this;
        var klass = Ember.get(this.constructor.toString());
        var fields = Ember.get(klass, 'fields');

        this.get('dependentRelationships').forEach(function(name) {
            var relationshipType = fields.get(name);
            switch(relationshipType) {
                case 'belongsTo': return self.deleteBelongsToRelationship(name, transaction);
                case 'hasMany': return self.deleteHasManyRelationship(name, transaction);
            }
        });
    },

    deleteBelongsToRelationship: function(name, transaction) {
        var record = this.get(name);
        if (record) this.deleteOrUnloadRecord(record, transaction);
    },

    deleteHasManyRelationship: function(key, transaction) {
        var self = this;

        // deleting from a RecordArray doesn't play well with forEach, 
        // so convert to a normal array first
        this.get(key).toArray().forEach(function(record) {
            self.deleteOrUnloadRecord(record, transaction);
        });
    },

    deleteOrUnloadRecord: function(record, transaction) {
        var deleteMethod = this.get('deleteMethod');
        if (deleteMethod === 'delete') {
            transaction.add(record);
            record.deleteRecord();
        }
        else if (deleteMethod === 'unload') {
            var store = this.get('store');
            store.unloadRecord(record);
        }
    }
});

请注意,您可以指定deleteMethod是否要将DELETE请求发送到您的 API。如果您的后端配置为自动删除相关记录,那么您将需要使用默认值。

这是一个jsfiddle,它显示了它的作用。

于 2013-03-03T03:10:11.840 回答
3

一种快速而肮脏的方法是将以下内容添加到您的用户模型中

destroyRecord: ->
  @get('comments').invoke('unloadRecord')
  @_super()
于 2014-10-29T21:39:30.910 回答
0

我调整了@ahmacleod 的答案以使用ember-cli 2.13.1and ember-data 2.13.0。我遇到了嵌套关系的问题,并且在从数据库中删除一个实体后,它的 id 被重用了。这会导致与 ember-data 模型中的残余冲突。

import Ember from 'ember';

export default Ember.Mixin.create({
    dependentRelationships: null,

    destroyRecord: function() {
        this.deleteDependentRelationships();

        return this._super()
        .then(function (model) {
            model.unloadRecord();

            return model;
        });
    },

    unloadRecord: function() {
        this.deleteDependentRelationships();

        this._super();
    },

    deleteDependentRelationships: function() {
        var self = this;
        var fields = Ember.get(this.constructor, 'fields');

        this.get('dependentRelationships').forEach(function(name) {
            self.deleteRelationship(name);
        });
    },

    deleteRelationship (name) {
        var self = this;
        self.get(name).then(function (records) {
            if (!records) {
                return;
            }

            var reset = [];
            if (!Ember.isArray(records)) {
                records = [records];
                reset = null;
            }

            records.forEach(function(record) {
                if (record) {
                    record.unloadRecord();
                }
            });

            self.set(name, reset);
        });
    },
});

最终,我不得不将关系设置为[](hasMany) 或null(belongsTo)。否则我会遇到以下错误消息:

Assertion Failed: You cannot update the id index of an InternalModel once set. Attempted to update <id>.

也许这对其他人有帮助。

于 2017-06-04T08:32:30.277 回答