gpt4 book ai didi

javascript - history.start() 函数在 backbone 中不起作用

转载 作者:行者123 更新时间:2023-11-29 10:19:35 25 4
gpt4 key购买 nike

我刚开始尝试在主干网中使用路由器,但我的 Backbone.history.start() 方法不起作用。它给我以下错误

Uncaught TypeError: Cannot call method 'start' of undefined 

这是我的代码

(function ($) {
window.App = {
Models: {},
Collections: {},
Views: {},
Router: {}
};

window.Template = function (id) {
return _.template( $('#' + id).html() );
};

App.Router = Backbone.Router.extend({
routers: {
'': 'index'
},

index: function () {
console.log('index page');
}
});

var r = new App.Router;
Backbone.history.start();
})(jQuery);

我怎样才能消除这个错误?

最佳答案

发生这种情况是因为您的路由器中没有任何路由。你有 routers 但它不一样 :)

关于javascript - history.start() 函数在 backbone 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14424447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com