3

私の問題は、ログアウトボタンをクリックしても ng2-idle が機能し続けることです。そして、この問題を解決するために、setIdle および setTimeout 関数を 1 秒間再度設定しました。

ただし、ユーザーがログイン画面に転送されると、アプリがタイムアウトを与えるのに 1 秒かかります。

logout() 関数を呼び出すログアウトボタンをクリックした後、タイムアウトを強制する方法または ng2-idle を終了する方法があるかどうかを知りたいです。

import {Component} from '@angular/core';
import {Router} from "@angular/router";
import {Http, Headers} from "@angular/http";
import {NgClass} from '@angular/common';
import {Observable} from "rxjs/Observable";
import 'rxjs/Rx';
import {HeaderService} from './header.service';
import {Idle, DEFAULT_INTERRUPTSOURCES} from 'ng2-idle/core';

@Component({
    selector: 'my-header',
    templateUrl: './js/app/header/header.component.html',
    styleUrls: ['./js/app/header/header.component.css']
})

export class HeaderComponent {
    nome = localStorage['nome'];
    constructor(private _router: Router, private _http: Http, private _headerService: HeaderService, private idle: Idle) {
        idle.setIdle(5);
        idle.setTimeout(1800);
        idle.setInterrupts(DEFAULT_INTERRUPTSOURCES);

        idle.onTimeoutWarning.subscribe((countdown:number) => {
          console.log('TimeoutWarning: ' + countdown);
        });

        idle.onTimeout.subscribe(() => {
          console.log('Timeout');
          localStorage.clear();
          this._router.navigate(['/auth', {sessionExpirate: 'true'}]);
        });
        idle.watch();
    }

    logout() {
        this.idle.setIdle(1);
        this.idle.setTimeout(1);
        this.idle.setInterrupts(DEFAULT_INTERRUPTSOURCES);
        this._headerService.exit()
            .subscribe(
                data => {
                    this.idle.onTimeout.subscribe(() => {
                        console.log('Timeout');
                        localStorage.clear();
                        this._router.navigate(['/auth']);
                },
                error => console.log(error)
            )}
        )
    }  
}
4

1 に答える 1

6

logout() 関数の変更に従います。

logout() {
    this.idle.stop();
    this._headerService.exit()
        .subscribe(
            data => {
                localStorage.clear();
                this._router.navigate(['/auth']);         
            },
                error => console.log(error)
        )                          
    }

関数this.idle.stop()またはthis.idle.ngOnDestroy(); idle.tsの両方を使用することが可能です

this.idle.ngOnDestroy();インクルードthis.idle.stop()と_this.clearInterrupts();

于 2016-08-28T23:01:45.773 に答える