我正在尝试使用 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);
});
});
});
谢谢你的帮助!