我試圖根據我選擇的標籤控制器的內容來過濾我的文檔控制器的內容。我不確定這是否是最好的解決方案,請隨時提出替代方案。爲什麼下面的結果是「必須設置Ember.set()來訪問這個屬性」?
除了這種不確定性,任何人都可以解釋爲什麼以下結果爲assertion failed: Must use Ember.set() to access this property
?特別是selectedTagsBinding: "App.selectedTagsController.content"
是什麼失敗。
App = Ember.Application.create();
App.documentsController = Ember.ArrayProxy.create({
content: [],
selectedTagsBinding: "App.selectedTagsController.content"
});
App.selectedTagsController = Ember.ArrayProxy.create({
content: [ new Ember.Object(), new Ember.Object() ]
});
感謝您的澄清! – pangratz 2012-02-16 14:28:00
沒問題。我實際上不得不在自己的代碼中做同樣的事情,有時候:) – 2012-02-16 14:48:09