0

有没有办法将所有对 App.Item 的调用委托给 App.Book,这样我就可以执行 App.Book.name 并返回 App.Item.name 的值和 App.Book.position 的值。简单地说,将 App.Item 的所有属性委托给 App.Book,想象一下 App.Item 有 10 - 12 个属性的场景。

App.Item = DS.Model.extend({
  name: DS.attr('string', { defaultValue: "foo" })
  position: DS.attr('string')
});


App.Book = DS.Model.extend({
  category: DS.attr('string')
});
4

0 回答 0