Ionic 3选项卡导航无法正常工作

时间:2018-05-21 17:52:48

标签: angular ionic-framework ionic3

成功创建离子3选项卡项目后,我添加了一个登录页面,其中包含一个按钮(使用Google登录)我想将用户重定向到新页面 - 标签页面。这是代码:

    if (!(<any>window).cordova) {
    return this.afAuth.auth.signInWithPopup(new firebase.auth.GoogleAuthProvider).then(result => {
    let token = result.credential.accessToken;
    let user = result.user;
    console.log(token, user);
    this.navCtrl.setRoot(TabsPage);

  });

选项卡页面加载没有问题,但我在底部的导航无法正常工作。选项卡不会突出显示,因为它们应该是。

0 个答案:

没有答案