离子2:从导航堆栈中删除登录页面,导致nav.push停止在仪表板页面

时间:2017-07-07 05:06:34

标签: ionic2

我有这个奇怪的问题。用户登录时,用户将转发到仪表板。但在此之前,我从导航堆栈中删除登录页面,以便在用户时 按下硬件后退按钮,他们不会被带回登录页面(因为他们已经登录)。

以下是登录页面的登录方法

loginUser(){
    this.loading=this.loadingctrl.create({
            content:"Logging in, please wait..."
     });

     this.loading.present();

     this.ajaxRequest = this.webservice.loginUser(params).subscribe(data => {
        this.loading.dismiss();
        if(data.status =="ok"){
            this.navctrl.push(DashboardPage).then(()=>{
                const index = this.viewCtrl.index;
                this.navctrl.remove(index);
                //Above two lines finds index of current page and removes current page, i.e. login page from navigation stack
            });
        }else{
            //show error alert
        }
     }, err =>{
        this.loading.dismiss();
     });

}

此代码运行良好但遇到了一个奇怪的问题

问题

信息中心或滑动菜单中的任何按钮都不起作用。 每个链接/按钮调用一些导航到其他页面的方法。示例方法 -

gotoProductsPage(){
 console.log("method gotoProductsPage is called");
 this.navCtrl.push(ProductsPage);
}

我可以看到正在调用这些方法,因为我可以看到在控制台中打印日志。唯一的问题是this.navCtrl.push(ProductsPage);似乎没有用。

我做了进一步测试,并在登录页面的登录方法中注释了行const index = this.viewCtrl.index;this.navctrl.remove(index);。 现在所有按钮都有效。但硬件后退按钮将用户带回登录页面。 任何人都可以告诉我为什么我的应用程序有这种奇怪的行为? 感谢

1 个答案:

答案 0 :(得分:0)

没有理由通过尝试获取LoginPage索引并将其删除来操纵导航堆栈。 我建议只需将DashboardPage设置为导航堆栈的根目录。

if(data.status =="ok"){
            this.navctrl.setRoot(DashboardPage).then(()=>{
                console.log("done");
            });
}else{
            //show error alert
}

现在它不会导航到back上的登录页面。