Javascript Ember js-在更新其他表后有许多关系中断

Javascript Ember js-在更新其他表后有许多关系中断,javascript,ember.js,ember-data,has-many,Javascript,Ember.js,Ember Data,Has Many,我正在使用带有本地存储适配器的Ember.js。我在更新记录时遇到了一个奇怪的问题 我有一个post和comments模型,它有很多关系: App.Post = DS.Model.extend({ title: DS.attr('string'), comments: DS.hasMany('comment', { async: true }) }); App.Comment = DS.Model.extend({ message: DS.attr

我正在使用带有本地存储适配器的Ember.js。我在更新记录时遇到了一个奇怪的问题

我有一个post和comments模型,它有很多关系:

App.Post = DS.Model.extend({
    title: DS.attr('string'),
    comments: DS.hasMany('comment', {
        async: true
    })
});
App.Comment = DS.Model.extend({
    message: DS.attr('string')
});
以下是我的帖子和评论:

App.PostsController = Ember.ArrayController.extend({
    newTitle: '',
    actions: {
        create: function() {
            var title = this.get('newTitle');
            var post = this.store.createRecord('post', {
                title: title
            });
            this.set('newTitle', '');
            post.save();
        }
    }
});
App.CommentsController = Ember.ArrayController.extend({
    needs: "post",
    post: Ember.computed.alias("controllers.post.model"),
    newMessage: '',
    actions: {
        create: function() {
            var message = this.get('newMessage');
            var comment = this.store.createRecord('comment', {
                message: message
            });
            var post = this.get('post');
            var comments = post.get('comments');
            if (comments.get('content') == null) comments.set('content', []);
            comments.pushObject(comment);
            comment.save();
            post.save();
        }
    }
});
在创建记录时,许多关系已正确更新

{
    "App.Post": {
        "records": {
            "0v66j": {
                "id": "0v66j",
                "title": "post1",
                "comments": ["p31al", "tgjtj"]
            }
        }
    },
    "App.Comment": {
        "records": {
            "p31al": {
                "id": "p31al",
                "message": "comment 1"
            },
            "tgjtj": {
                "id": "tgjtj",
                "message": "comment 2"
            }
        }
    }
}
编辑文章时出现问题。编辑post记录后,关系消失。我进行了一些搜索,找到了以下代码:

DS.JSONSerializer.reopen({
    serializeHasMany: function(record, json, relationship) {
        var key = relationship.key;
        var relationshipType = DS.RelationshipChange.determineRelationshipType(record.constructor, relationship);
        //  alert(relationshipType);
        if (relationshipType === 'manyToNone' || relationshipType === 'manyToMany' || relationshipType === 'manyToOne') {
            json[key] = Ember.get(record, key).mapBy('id');
            // TODO support for polymorphic manyToNone and manyToMany
            // relationships
        }
    }
});
这就成功了,效果很好。但现在我有另一个问题。如果编辑任何其他记录,所有id引用都将替换为整个对象,如下所示:

{"App.Post":{"records":{"0v66j":{"id":"0v66j","title":"post2","comments":[**{"message":"comment 1"},
{"message":"comment 2"}**]},"8nihs":{"id":"8nihs","title":"post3","comments":["b4v2b","dbki4"]}}},
"App.Comment":{"records":{"p31al":{"id":"p31al","message":"comment 1"},"tgjtj":{"id":"tgjtj","message":"comment 2"},
"b4v2b":{"id":"b4v2b","message":"comments3"},"dbki4":{"id":"dbki4",
"message":"comments4"}}}}

注释引用应该是comments:[“p31al”,“tgjtj”]类似这样。但是ID被替换为“comments:[{“message”:“comment1”},{“message”:“comment2”}]

我注意到在我的余烬路径中有一些东西……尤其是余烬数据

其中之一是在处理关联时,我必须手动在关联中重新添加保存和重新保存,并使用addObject来处理内存中的关联,就像您在这里使用的一样。:)

请注意,这通常只在我同时更新多个新对象时发生。例如,如果您的帖子是新的,并且您的评论也是新的

我有点担心在您的代码库中看到以下代码,因为它不应该存在。您的关联中不应该有null或非数组对象。我不确定您对适配器做了什么以及为什么有必要这样做,但我希望这不是原因:

  if(comments.get('content') == null)
    comments.set('content', []);
无论如何,下面的代码是我可能会如何编写您的创建操作。它可能会有帮助。我希望它会有帮助

create: function() {
  // get the post for association on the new comment
  var post = this.get('post');

  // get the message to store on the new comment
  var message = this.get('newMessage');

  var comment = this.store.createRecord('comment', {
    message : message,
    post : post
  });

  comment.save().then(function(savedComment) {
    post.get('comments').addObject(savedComment);
  });
}
请注意,这要简单得多。一般来说,如果你在做复杂的棘手的事情,就会出现一些问题,是时候回到基础上来,一次添加一件事情,在添加之间进行彻底的测试了。:)


祝你好运!

当使用扩展LSSerializer的ApplicationSerializer时,它似乎可以工作


可能是因为被问到后它被修复了?

这对你的问题有帮助吗?进展如何?你不能只动态更新注释吗?而不是返回整个json对象吗?