【发布时间】:2015-12-13 04:46:17
【问题描述】:
目前我有下面的代码 - 问题是模板'旧浏览器不能为 ie8 呈现。我可以将外部重定向到外部页面吗?
Router.map(function() {
this.route('main', {
path: '/',
layoutTemplate: 'layout',
template: 'main',
onBeforeAction: function () {
// render the unsupported browser page if user isn't using Chrome
if(BrowserDetect.browser == "Explorer" && BrowserDetect.version < 10){
this.redirect('oldbrowser');
}
this.next();
},
});
});
【问题讨论】:
标签: redirect meteor iron-router