2

我无法修改服务器的 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,我不需要。这就是问题所在。目前。

4

1 回答 1

3

pushState was the problem. I turned it off then my issues were solved.

于 2012-07-19T20:11:17.350 回答