嘿所有这些让我疯狂。
以下是代码:
constructor(
platform: Platform,
statusBar: StatusBar,
splashScreen: SplashScreen,
afAuth: AngularFireAuth
) {
afAuth.authState.subscribe(user => {
if (user) {
this.rootPage = "TabsPage";
console.log("logging in");
console.log(JSON.stringify(user)); // user
} else {
this.rootPage = "LoginPage";
console.log("logging out");
console.log(JSON.stringify(user)); // null
}
});
在网络上运行时,我可以登录我的应用程序,然后按预期退出。但是在Android上(通过离子cordova运行android测试),用户订阅被设置,然后立即设置为null。
答案 0 :(得分:0)
所以我想出来了!
这是我使用v4.12.1
的firebase版本我更改为版本4.11.0并且问题已停止发生。