0
我做了Facebook登錄到我的應用程序,我試圖檢查用戶是否登錄然後去主頁,如果不去登錄頁面。 我做到了與火力點,但我想這樣做與angularfire2 這是我的代碼以火力(我想這在angularfire2)離子2檢查用戶是否已經使用angularfire2登錄
firebase.auth().onAuthStateChanged((user) => {
var that=this;
if (user) {
if(this.reg_boolean=="true"){
console.log("regCompleted");
this.nav.setRoot(TabsPage,{
dep:this.department,year:this.year,semester:this.semester
})
this.rootPage=TabsPage;
}
else{
this.rootPage = SignupPage;
}
console.log("I'm here! HomePage");
} else {
this.rootPage = LoginPage;
console.log("I'm here! LoginPage");
}
});
我會嘗試一下,如何在authService中使用?它是你項目中的提供者?你如何註銷?我有Facebook登錄。 –