流星无限重定向而不是渲染 404
Meteor infinite redirect instead of render 404
我的 /lib/router.coffee:
中有一个简单的 iron-router 配置
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.1
appcache 1.0.3
coffeescript 1.0.5
ground:localstorage 0.1.7
ground:store 0.1.1
ianhorst:bower 0.0.2
iron:router 1.0.6
meteor-platform 1.2.1
meteorhacks:kadira 2.15.2
peerlibrary:async 0.9.0_3
rzymek:moment 2.8.3_10
rzymek:moment-locale-ru 2.8.4
我也在客户端使用Framework7。
尝试在对 Router.configure() 的调用中添加默认布局模板。 notFoundTemplate 旨在填充主布局模板的产量,而不是作为替代布局模板。
你有一个旧的铁路由器API,在新的中我最后的路线是这样的:
Router.route('/(.*)', function() {//regex for every route, must be last
if (this.ready()) {
document.title = "404";
this.render('error');
} else this.render('loading');
})
我的 /lib/router.coffee:
中有一个简单的 iron-router 配置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.1
appcache 1.0.3
coffeescript 1.0.5
ground:localstorage 0.1.7
ground:store 0.1.1
ianhorst:bower 0.0.2
iron:router 1.0.6
meteor-platform 1.2.1
meteorhacks:kadira 2.15.2
peerlibrary:async 0.9.0_3
rzymek:moment 2.8.3_10
rzymek:moment-locale-ru 2.8.4
我也在客户端使用Framework7。
尝试在对 Router.configure() 的调用中添加默认布局模板。 notFoundTemplate 旨在填充主布局模板的产量,而不是作为替代布局模板。
你有一个旧的铁路由器API,在新的中我最后的路线是这样的:
Router.route('/(.*)', function() {//regex for every route, must be last
if (this.ready()) {
document.title = "404";
this.render('error');
} else this.render('loading');
})