私はこのjsbinを持っています。私の問題は、次のことをトリガーしようとしていることですaction
:
<a {{action controllers.nodesIndex.destroyAllRecords this}}><i class="icon-remove-circle"></i><a/>
しかし、私は得る:
Uncaught Error: Nothing handled the event 'controllers.nodesIndex.destroyAllRecords'
icon-remove-circle
(右上の小さなアイコンを押して、js コンソールでエラーを確認することでトリガーできます)
しかし、私のコントローラーは適切にセットアップされています:
App.NodesIndexController = Ember.ArrayController.extend({
destroyAllRecords: function () {
console.log('destroyAllRecords called');
},
});
ここで何が欠けていますか?