我有这个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');
},
});
我在这里想念什么?