我从 ApplicationController init 事件中的元标记中获取当前用户:
App.ApplicationController = Ember.Controller.extend({
needs: ['currentUser'],
init: function() {
'use strict';
this._super();
var attributes = $('meta[name="current-user"]').attr('content');
if (attributes) {
this.set('controllers.currentUser.content', App.User.create().setProperties(JSON.parse(attributes)));
}
},
在需要对用户进行身份验证的每条路由中,我都有一个重定向挂钩,如果未设置 currentUser 则应该重定向:
App.UserEditRoute = Ember.Route.extend({
redirect: function() {
if (this.controllerFor('currentUser').get('isSignedIn') === false) {
this.transitionTo('user.login');
}
}
});
问题是 Route 重定向事件在 ApplicationController.init 之前触发。
实现这一目标的正确方法是什么?
谢谢!