HasMany协会更新

时间:2013-01-16 13:10:14

标签: ember.js ember-data

如何更新记录中的hasMany个关联?

我试过这种方法:

record.get('childrenRecords').clear();
newChildrenRecords.forEach(function (child) {
  record.get('childrenRecords').pushObject(App.ChildModel.find(child.get('id'));
});

但我收到了错误:

Uncaught Error: <DS.ManyArrayStateManager:ember3557> could not respond to event recordWasAdded in state loading.

此外,我无法找到正确的解决方案,如何更新hasMany文档中的Ember.data关联。

0 个答案:

没有答案