我需要知道如何获取 ArrayController 在其内容数组中的对象位置。比方说:
App.AnArrayController = Ember.ArrayController.set({
content: [],
});
App.AnObject = Ember.Object.set({
name: null,
lastname: null,
id: 0
});
现在,假设我在 AnArrayController 的内容中插入了两个 AnObject。如何在不知道它在 ArrayController 中的位置的情况下更新特定对象的值,但只知道该对象的 id 属性是 X?
谢谢!