如果网址命中/dashboard/ ,我正在尝试将/dashboard/重定向到/dashboard/reach/demographic。
问题是,如果我点击像 **/dashboard/traffic 这样的子路由,我仍然会被重定向到/dashboard/reach/demographic/ 。
Ember 的做法是什么?
这是我的代码:
(function() {
App.Router.map(function(match) {
this.resource('dashboard', function() {
this.resource('traffic', function() {
this.route('visits');
this.route('pageviews');
return this.route('duration');
});
return this.resource('reach', function() {
this.route('demographics');
this.route('over_time');
return this.route('devices');
});
});
return this.route('audience');
});
App.DashboardRoute = Ember.Route.extend({
redirect: function() {
return this.transitionTo('reach.demographics');
}
});
if (!App.ie()) {
App.Router.reopen({
location: 'history'
});
}
App.reopen({
rootUrl: '/'
});
}).call(this);