【发布时间】:2021-07-21 13:35:35
【问题描述】:
在我使用 firebase google 登录方法登录后,我想导航到主页。 我想不通,为什么导航不起作用。 这是我的代码:
async signInWithGoogle() {
// authentication works:
await this.afAuth.signInWithRedirect(new firebase.auth.GoogleAuthProvider());
// but the following code doesn't get executed:
this.ngZone.run(() => {
this.router.navigate(['tabs/home']);
});
}
【问题讨论】:
标签: angular firebase ionic-framework navigation router