AngularFire2:通过多个浏览器选项卡通知注销

时间:2018-03-27 08:54:11

标签: angular firebase firebase-authentication angularfire2

我正在开发一个与Firebase连接的Angular应用程序。如果我在浏览器中有2个应用程序实例并从一个实例注销,如何通知另一个实例该用户不再经过身份验证,并且应该取消订阅Firebase。

我提供了一个stackblitz,它订阅了Firebase的真实实例。单击{{1}}时,它会登录并提取文档。这会重新创建场景,但由于它只在控制台上输出日志,因此它仍然无法按预期与实际项目一起工作。

Stackblitz. To recreate, open 2 instances of it, sign in one of them and signout.

2 个答案:

答案 0 :(得分:1)

我不确定这是否是你需要的,因为我无法重现错误。虽然发布它无论如何。

export class SomeComponentOrService{
    private subscription: Subscription;

    constructor(private afAuth: AngularFireAuth){
        this.subscription = afAuth.subscribe(res => {
            if(isNullOrUndefined(res){
                this.subscription.unsubscribe();
            }
        });
    }
}

答案 1 :(得分:0)

添加可能是问题的另一个答案。

this.afAuth.auth.signOut();

auth是当前状态。如果用户已注销,则当前状态可能为null。简单的空检查可能会修复您的错误。

if(!isNullOrUndefined(this.afAuth.auth){
    this.afAuth.auth.signOut();
}