我无法修改服务器的 htaccess 并想使用主干路由器。问题是我在 url (index.html) 中遇到了一个静态 html 文件
如何让 Backbone 忽略 index.html?
提前致谢。
var Router = Backbone.Router.extend({
routes : {
"page-one" : "pageOne"
},
pageOne : function(){},
pageTwo : function(){},
pageThree : function(){}
});
scn.router = new Router();
Backbone.history.start({root: "/Backbone/index.html"});
我有 pushState,我不需要。这就是问题所在。目前。