0
ではないです(ボタンのクリックはこれをトリガ)AngularFire2配信停止は私が多くの人が加入し得るそれ以外の私の以前のsubscribtionsを解除しようとしているIMと権限エラーをサインアウトサインアウトmethod.Beforeを記述しようとしています機能
console.log(this.profileData);
this.profileData.unsubscribe();
this.app.auth().signOut().then(function() {
alert("you successfully signed out");
}, function(error) {
alert("error");
});
これは私が
this.profileData = this.fire.authState.switchMap(auth => this.db.object(`profile/${auth.uid}`).valueChanges());
this.profileData.subscribe(profile =>{...
をサブスクライブする方法であります
この質問はまだ有効です –