4つの状態があります:dashboard、dahboard.main、dashboard.minor、login。ダッシュボードは抽象的であり、.minorおよび.main状態の親状態です。以下は私のコードです:
.state('dashboard', {
url: "/dashboard",
abstract: true,
templateUrl: "views/dashboard.html",
resolve: {
auth: function ($q, authenticationSvc) {
var userInfo = authenticationSvc.getUserInfo();
if (userInfo) {
return $q.when(userInfo);
} else {
return $q.reject({ authenticated: false });
}
}
},
controller: "DashboardCtrl",
data: { pageTitle: 'Example view' }
})
.state('dashboard.main', {
url: "",
templateUrl: "views/main.html",
controller: "DashboardCtrl",
data: { pageTitle: 'Main view' }
})
ダッシュボードの状態でわかるように、解決オプションがあります。これにより、許可されていないユーザーをログインページにリダイレクトしたいと思います。このため、特別なauthenticationSvcサービスを使用します。
.factory("authenticationSvc", ["$http", "$q", "$window", function ($http, $q, $window) {
var userInfo;
function login(email, password) {
var deferred = $q.defer();
$http.post("/api/login", { email: email, password: password })
.then(function (result) {
if(result.data.error == 0) {
userInfo = {
accessToken: result.data.accessToken
};
$window.sessionStorage["userInfo"] = JSON.stringify(userInfo);
deferred.resolve(userInfo);
}
else {
deferred.reject(error);
}
}, function (error) {
deferred.reject(error);
});
return deferred.promise;
}
function getUserInfo() {
return userInfo;
}
return {
login: login,
logout: logout,
getUserInfo: getUserInfo
};
}]);
configで認証値を確認します:
.run(function($rootScope, $location, $state) {
$rootScope.$state = $state;
$rootScope.$on("routeChangeSuccess", function(userInfo) {
consol.log(userInfo);
});
$rootScope.$on("routeChangeError", function(event, current, previous, eventObj) {
if(eventObj.authenticated === false) {
$state.go('login');
}
});
});
しかし、残念ながら、Webサイトのルートまたはダッシュボードの状態に移動すると、空のページが表示されます。このコードの何が問題になっていますか?ありがとう!
ポイントは、必要でない場合はリダイレクトしないでください===すでに目的の状態にリダイレクトされている場合。 動作しているプランカー があり、同様の解決策があります
.run(function($rootScope, $location, $state, authenticationSvc) {
$rootScope.$on( '$stateChangeStart', function(e, toState , toParams
, fromState, fromParams) {
var isLogin = toState.name === "login";
if(isLogin){
return; // no need to redirect
}
// now, redirect only not authenticated
var userInfo = authenticationSvc.getUserInfo();
if(userInfo.authenticated === false) {
e.preventDefault(); // stop current execution
$state.go('login'); // go to login
}
});
});
同様の説明については、これらを確認してください。
UI-Routerモジュールを使用しているため、$stateChangeStart
、$stateChangeSuccess
イベントを使用する必要があります。
詳細については、このリンクを確認してください: https://github.com/angular-ui/ui-router/issues/17
また、consoleのconsol.log(userInfo)
にタイプミスがあります。
Chrome-dev-toolsでコンソールを確認してください。他の何かが欠けている場合、それは考えを与えます。
実際に$stateChangeSuccess
イベントは非推奨であり、angular-ui-route
パッケージでは使用できなくなっていることに注意してください。現在、この動作は transition hooks
によって処理されます。次のように $transitions.onStart
を使用して目的を達成できます。
run.$inject = ['$transitions', 'authenticationSvc'];
function run($transitions, authenticationSvc) {
$transitions.onStart({}, function (trans) {
var userInfo = authenticationSvc.getUserInfo();
var $state = trans.router.stateService;
if(userInfo.authenticated === false) {
$state.go('login'); // go to login
}
});
}