刷新页面时,使用pushState的Backbone路由不起作用

时间:2013-10-01 19:37:29

标签: javascript backbone.js backbone-routing

我有一个简单的路由器:

Erin.Router = Backbone.Router.extend({
    initialize: function() {
        Backbone.history.start({pushState: true});
    },
    routes: {
        '' : 'index',
        'project/:img' :'project',
    },
    index: function() {
        var galleryView = new Erin.GalleryView();
    },
    project: function(img) {
        console.log(img);
    }
}); 

Erin.GalleryView的模板是(认为可能存在问题):

<script type="text/template" id="gallery-grid">
        <a href="/project/<%= id %>">
            <img src="<%= thumbnail %>" />
            <span class="desc">
                <div class="desc-wrap">
                    <p class="title"><%= title %></p>
                    <p class="client"><%= client %></p>
                </div>
            </span>
        </a>
    </script>

GalleryView和GalleryItem代码。

Erin.GalleryItem = Backbone.View.extend({
    tagName: 'div',
    className: 'project-container',
    //Grab the template html
    template: _.template($('#gallery-grid').html()),
    //Set up the render function
    render: function() {
        //What is the $el in this case?
        this.$el.html(this.template(this.model.toJSON()));
        return this;
    }
});

Erin.GalleryView = Backbone.View.extend({
    el: '#projects',
    initialize: function() {
        //create new collection
        this.col = new Erin.Gallery();
        //Listen to all events on collection
        //Call Render on it
        this.listenTo(this.col,'all',this.render);
        //Fetch data
        this.col.fetch();
    },
    render: function() {
        //Get reference to the view object
        var that = this;
        //Empty div
        this.$el.empty();
        //For each model in the collection
        _.each(this.col.models, function(model){
            //call the renderItem method
            that.renderItem(model);
        },this);
    },
    renderItem: function(model) {
        //create a new single item view
        var itemView = new Erin.GalleryItem({
            model:model
        });
        //Append items to to element, in this case "#projects"
        this.$el.append(itemView.render().el);  
    }
});

然后我准备好了一份文件

$(function() {
    var router = new Erin.Router();
    $('#projects').on('click', 'a[href ^="/"]', function(e){
        e.preventDefault();
        router.navigate($(this).attr('href'),{trigger: true});
    });
});

当您加载页面并单击#project部分中的一个链接时,一切都按预期运行,但是如果刷新该页面,则会出现打破页面的错误。

从控制台:

Uncaught SyntaxError: Unexpected token < js/jquery.js:1
Uncaught SyntaxError: Unexpected token < js/underscore-min.js:1
Uncaught SyntaxError: Unexpected token < js/backbone.js:1
Uncaught SyntaxError: Unexpected token < erin.js:1

它还陈述了类似的东西:

Resource interpreted as Script but transferred with MIME type text/html: "http://localhost:8888/project/js/backbone.js". 

对于文档头部的所有链接和脚本。

所有这些似乎都指向index.html文件的第一行。因此,如果我单击一个链接,它将从我的数据中控制我正在寻找的img id,如果我刷新页面或输入该链接,我会得到上面的错误。我是否正确地认为我应该能够保存链接domain.com/project/coolthing并在有人访问该页面时使其工作。我错过了什么吗?实施了一些奇怪的东西?向正确的方向轻推将非常感激。

感谢。

3 个答案:

答案 0 :(得分:8)

服务器端出现问题。你可能已经解决了这个问题的一半。

您的服务器似乎已正确配置为在任何匹配上发送您的应用HTML,但您的资产(js,css)除外。

问题在于主HTML,您的JS文件以相对路径引用。在pushState将网址更新为/project/1后重新加载时,基本网址变为/project/

即。你有

<script src="js/backbone.js"></script>

何时应该

<script src="/js/backbone.js"></script>

因此,当浏览器尝试加载backbone.js时,它找不到它(/project/js/backbone.js不存在),并点击提供应用HTML的服务器catchall(因此解析在<上窒息的错误。

我的解释可能不是很清楚,这里已经很晚了,但我相信你会明白的!

答案 1 :(得分:1)

问题在于您在模板中使用的href。 Backbone Router正在关注对网站网址hash部分的更改,这是#符号后面的内容。

所以你的href应该是:<a href="/#project/<%= id %>">(在“项目”之前注意#

以这种方式,您根本不需要点击处理程序,路由器将自动捕获哈希更改事件并相应地路由。

答案 2 :(得分:1)

thibauts'providencemac's评估都是正确的。要么不使用pushState并使用哈希链接,要么在服务器中放置重写规则以发送静态。

最初加载时加载此网址 -

http://localhost:8888

你的静力学的智慧网址就在这个

http://localhost:8888/js/backbone.js

实际问题是当您使用pushState并访问链接时。您的浏览器网址变为。像这样的东西 -

http://localhost:8888/project/some_img_id

现在,当您尝试重新加载页面时,索引文件将从此URL中获取 -

http://localhost:8888/project/your_default.file   [index.html]

您的服务器无法找到,默认为索引文件

http://localhost:8888/your_default.file

当浏览器尝试访问静态时,它再次默认为索引文件

http://localhost:8888/project/js/backbone.js
这就是为什么错误。因为它找到'&lt;' javascript中无效toekn的字符。

Uncaught SyntaxError: Unexpected token < js/jquery.js:1

这个错误导致它试图解析的文件是backbone.js一个javascript但它得到你的index.html

Resource interpreted as Script but transferred with MIME type text/html: "http://localhost:8888/project/js/backbone.js".