Router.configure notFoundTemplate: "notFound"Router.map -> @route "app",path: "/" template: "app"
当进入/它的工作,但如果我尝试转到/ abc然后它重定向我/#!abc,之后它重定向我在/ abc,所以无休止地重复(我在浏览器的地址栏中看到这些更改,在浏览器日志重定向中从/到/ abc和后面).我从来没有看到404错误.
有没有人遇到过这种行为?
我使用Meteor v1.0.2.1.有我的流星列表:
alethes:lodash 0.7.1appcache 1.0.3coffeescript 1.0.5ground:localstorage 0.1.7ground:store 0.1.1ianhorst:bower 0.0.2iron:router 1.0.6meteor-platform 1.2.1meteorHacks:kadira 2.15.2peerlibrary:async 0.9.0_3rzymek:moment 2.8.3_10rzymek:moment-locale-ru 2.8.4
我也在客户端使用Framework7.
解决方法 你所拥有的是旧的铁路由器API,在新的路由器中,我的最后一条路线如下所示:Router.route('/(.*)',function() {//regex for every route,must be last if (this.ready()) { document.Title = "404"; this.render('error'); } else this.render('loading');})总结
以上是内存溢出为你收集整理的web-applications – Meteor无限重定向而不是渲染404全部内容,希望文章能够帮你解决web-applications – Meteor无限重定向而不是渲染404所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)