2017-12-11 16 views
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 =>{... 

enter image description here

をサブスクライブする方法であります
+0

この質問はまだ有効です –

答えて

0

unsubscribeは、サブスクリプションのためのインターフェイスで、this.profileData.subscribe(...)によって返されます。 Observableには現在this.profileDataが割り当てられているようです。

関連する問題