をクリアする方法を探していますが、次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()
でも、できればにこだわりたい。