I am still new to angularjs and trying to understand the concept. i have a working solution but i just need to make sure this is a secure way of doing it. i have a $rootScope.$on('$stateChangeStart', function(){} which sends a http post to a php file, this checks to see if it has session data and returns "1" being true and "0" being false. if false then i perform a $state.go('login'); which redirects to login page. This works exactly how i wish it to but just would like some further knowledge if this is secure enough.
使用http post检查会话和重定向
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
dongluo3331 2017-03-29 10:07关注While there are several others way of authenticating the session data, your approach is fine as well.
Enclose the
$oninapp.runmethod and check if user is on login page then avoid the$httpcall.app.run(function ($rootScope, $state) { $rootScope.$on('$stateChangeStart', function (event, next, nextParams, prev, prevParams) { //Check if already on login page do not check session if (next.name === 'login') { return; } //$http call to check session }); });本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报