app.componemt.ts 偵測事件 // 如自動登出功能有bug 則停用以下-------- @ HostListener ( ' window:keyup ' , []) @ HostListener ( ' window:click ' , []) @ HostListener ( ' window:wheel ' , []) @ HostListener ( ' window:mousemove ' , []) resetTimer () { this . authService . notifyUserAction () ; } authService export class AuthService { isLoggedIn = false ; // ! 閒置登出時間請更改這參數的數字 endtimeSet = 30 ; // 這邊讓單位變成分鐘秒 endTime = this . endtimeSet * 60 ; // store the URL so we can redirect after logging in redirectUrl : string ; constructor ( private router : Router ) {} // 偵...
留言
張貼留言