我正在寻找一种清除 的方法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()
。