をクリアする方法を探していますが、次ArrayControllerの場合にエラーが発生しますsortProperties。
App.SwatchesController = Ember.ArrayController.extend({
clear: function () {
this.clear(); // Error: Using replace on an arranged ArrayProxy is not allowed.
},
sortProperties: ['occurences']
});
を削除するsortPropertiesと、問題なく動作します。もちろん、次のようにしてコントローラーをクリアできます。
this.set('model', []);
clear()でも、できればにこだわりたい。