I am working in angular js, When a user logged out from the browser and click browser back button (or) user Bookmark URL and load after logout. will load the controller page and check session exists, If not redirect to login page. which will take 5 seconds time and display UI of the previous page after logout?
Please give me a solution How to solve this issue
sorry if I ask a basic question, please give me a clear explanation friends
I didn't have any friends working on angular js
you have to use
authGuard
service provided by angular2. where you can control user to load particular template on the basis of condition which is based on your condition i.e login/logout in your caseyou can use their default methods like
canActivate
andcanActivateChild
see here
http://blog.thoughtram.io/angular/2016/07/18/guards-in-angular-2.html
https://angular.io/docs/ts/latest/guide/router.html