2

我正在尝试使用 Backbone.js 来处理浏览器历史记录。我没有设置视图/模型,因为我不希望它处理这个问题,并且可能正因为如此,我没有让它正常工作。

此时我的页面正在更改网址。像:

domain.com/services
domain.com/products
domain.com/contact
domain.com/gallery
domain.com/gallery/photo1

问题是:如果我尝试在 domain.com/gallery/photo1 重新加载页面。我收到错误Uncaught SyntaxError: Unexpected token <

只有一级永久链接的所有其他页面在重新加载时都能正常工作。我在 Backbone 上遗漏了什么吗?

我只是在使用 Backbone.Router 和 Backbone.history。

有没有关于如何使用backbone.js 建立网站的简单教程?只是历史的东西?

这是我的脚本:

var Router;
var myRouter;

$(document).ready(function(){
    Router = Backbone.Router.extend({
        initialize : function(options) {
            //
        },
        routes: {
            '' : 'home',
            '*actions' : 'pages'
        },
        home : function() {
            this.render('/');
        },
        pages : function(actions) {
            this.render(actions);
        },
        render : function(path) {
            var fullLine = '';
            path = (path === '/' || path === '')? '/' : path;
            console.log('path: ' + path);
        }
    });

    myRouter = new Router();

    Backbone.emulateHTTP = true;
    Backbone.emulateJSON = true;
    Backbone.history.start({pushState: true, root: "/backbone_teste/"});

    // MENU CLICK
    $('.menu').children('li').each(function(){
        $(this).click(function(){
            myRouter.navigate($(this).attr('data-id'), true, true);
        });
    });
});

谢谢你的帮助!

4

1 回答 1

2

问题解决了:

我刚刚在我的 index.php 文件的 head 部分添加了以下代码:

<base href="http://localhost/backbone_teste/" />

它有效。

无论如何,我想知道为什么会发生这种情况以及为什么 Backbone.js 文档没有提到这一点。

我在这个链接找到了解决方案:HTML5 History / pushState URLs, .htaccess and You

谢谢

于 2012-07-24T19:21:20.027 回答