我有父母和孩子。正如您所期望的那样,父'hasMany'子对象。我能够很好地创建一个新的Parent,但是我无法在我的模板上显示新的Child对象。根据Chrome和Firefox Ember调试工具,看起来正确地在商店中创建了Child对象。但新孩子从未出现在模板中。
我相信我已经遵循了Ember docs来写信,但我无法让我的代码工作。
我创建了以下jsbin来演示我的情况。 http://emberjs.jsbin.com/zodorule
如何在Ember中创建与许多相关的新对象?
答案 0 :(得分:2)
Ember Data不是一个数据库,因此从一侧设置关系不会自动将其与另一方挂钩。
var child = this.store.createRecord('Child', {name: 'Fred'});
this.store.find('parent', 1).then(function(parent) {
child.set('parent', parent);
parent.get('children').then(function(children){
children.pushObject(child);
});
});