2015-09-16 89 views
0

目前,我有下面的代碼 - 問題是模板的舊瀏覽器不呈現ie8。我可以做外部重定向到外部頁面嗎?Metor鐵路路由器 - 外部重定向

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(); 
     }, 
    }); 

}); 

回答

1

而不是使用this.redirect()的只是使用:

window.location = 'http://externalurl.com'; 

你不能在這一點上使用紅外路由,因爲它沒有在外部路線的知識。