谷歌邮件提示第二次未使用angular

时间:2019-02-16 13:01:39

标签: angular typescript2.0

我在Angular 2中使用google邮件提示符,当前正在使用angular2-social-login NPM。 在这里google邮件提示第一次打开,第二次未打开google mail登录提示。

 <button class="btn gmailBtn" (click)="signIn('google')" type="button">Login with Gmail</button>

 <button class="btn gmailBtn" (click)="logout()" type="button">Log OUT</button>


import { AuthService } from "angular2-social-login";

constructor(private _auth: AuthService) { }

 signIn(provider: any) {
    this.sub = this._auth.login(provider).subscribe(
      (data) => {
        this.user = data;
      }
    );
  }


  logout() {
    this._auth.logout().subscribe(
      (data) => {
        this.user = null;
      }
    )
  }

Google Gmail无法再次打开并显示较旧的提取数据。

0 个答案:

没有答案