2016-05-16 112 views
0

當前儀表板網址爲「reporting/questionnaire。」。用戶通常會忘記輸入完整的「/報告/問卷」,最終只能通過「/ reporting」進行搜索。EmberJS - 將父路徑重定向到其嵌套的子路徑

這當前設置爲嵌套路線。

Router.map(function() { 
    this.route('reporting', function() { 
    this.route('questionnaires'); 

任何人都知道如何將父路徑'/ reporting'重定向到其嵌套子節點'reporting/questionnaire'?

回答

0

想通了!二手EmberJS重定向插件爲灰燼,CLI:https://github.com/thoov/ember-redirect

這個代碼是所有花:

var Router = Ember.Router.extend({ 
    location: config.locationType, 

    redirects: { 
    'reporting.index' : 'reporting.questionnaires' 
    } 
});