如何从视图中的操作处理动作处理程序?
目前我无法联系到其中一人:(而不是我收到此错误:
TypeError: 'undefined' is not an object (evaluating 's.send')
html中的我的按钮:
{{action 'delete' view.model.customer }}
情况的简短草稿:
编辑:
路线动作哈希:
actions:{
delete:function(id){
console.log(id);
alert('hi');
}
}
查看操作哈希:
actions:{
delete:function(id){
console.log(id);
alert('hi');
}
}