在我的应用程序中有如下定义的 3 条路由,一切正常,但是当调用未定义的路由时,会显示空白页。比如,如果我输入 url,http://example.com/page.php/#invalidRoute
那么我会得到一个空白页面,如果没有找到路由,我想加载“个人资料”视图,我的代码在下面给出....
ProfileRouter = Backbone.Router.extend({
initialize : function() {},
routes : {
'' : 'profile',
'detailedProfile' : 'detailedProfile',
'moreReviews' : 'moreReviews',
},
profile : function() {
/*Load a profile*/
},
detailedProfile : function() {
/*Load detail profile*/
},
moreReviews : function() {
/*Load more review*/
}
});
提前致谢...