我需要調用ItemController中的函數/或從ArrayController中設置子ItemController的新屬性。如何從ArrayController訪問ItemController
爲了更好的畫面
App.ProductsController = Ember.ArrayController.extend({
needs: ["product"],
itemController: 'product',
contentChanged: function() { //no idea how to initiate this, hence I use observes
// How do I access the children controllers from here?
// I had tried below, but not working:
// this.get("content").forEach(function(item) {
// item.doSomething();
// });
}.observes('content')
});
App.ProductController = Ember.ObjectController.extend({
doSomething: function() {
//supposed to do something
}
});
我還沒有找到任何辦法做到這一點。
不,在「this.forEach」不通過子控制器迭代的。 – Yman
好的,正確的,「this.forEach」返回itemController。我發現問題實際上是在「觀察」。我將發佈一個正確的方式來等待下面的解決方案。不管怎樣,謝謝你!給你一個+1 – Yman