我可能错过了一些简单的事情或做错了什么,但我正在尝试这个并且无法让它触发该功能......
var Home = Backbone.View.extend({
indexAction: function() {
console.log('index');
},
render: function() {
console.log('render');
}
});
Home.indexAction();
我得到的只是这个错误:
未捕获的类型错误:对象函数 (){return i.apply(this,arguments)} 没有方法 'indexAction'