实践是知识的母亲,知识是生活的明灯。这篇文章主要讲述Ionic 3 / AngularFire2 authState不能在Android上保留(但可以在Web上运行)相关的知识,希望能为你提供帮助。
嘿所有这些让我疯狂。
这是代码:
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
}
});
【Ionic 3 / AngularFire2 authState不能在Android上保留(但可以在Web上运行)】在网络上运行时,我可以登录我的应用程序,然后按预期注销。但是在android上(通过离子cordova运行android测试),用户订阅被设置,然后立即设置为null。
答案所以我明白了!
这是我使用v4.12.1的firebase版本
我更改为版本4.11.0并且问题停止发生。
推荐阅读
- ionic-app-script在构建时失败 - 无法找到模块'@ angular / compiler-cli / ngtools2'
- 请求AppDataFolder时,Google云端硬盘API会返回错误“无效值”和“无效查询”
- 使用Google Apps脚本查找所有文件夹(和子文件夹)中的文档/幻灯片/表格
- Google Apps脚本中的Google Drive通知
- 如何使用Flutter访问Google Drive appdata文件夹文件()
- Google Apps脚本未遍历所有文件
- 谷歌驱动API的Android如何登录并从硬编码我的硬盘帐户注销无需用户交互()
- 谷歌硬盘中App Data文件夹的未来是什么()
- 如何在Android上使用本地化时间单位格式化字符串的持续时间()