我正在处理一个应用程序,我想导航回TabsPage而不是4个标签的特定第二个标签。
所以我根据堆栈上的其他答案尝试的是:
export class ModalPage {
public tab: Tabs;
constructor(public navCtrl: NavController, private viewCtrl: ViewController, public params: NavParams) {
this.tab = this.navCtrl.parent;
}
submit(score, comment){
let currentIndex = this.slides.getActiveIndex();
if(currentIndex === this.allExercises.length - 1){
this.tab.select(1);
}
但这会引发我的错误:ERROR TypeError: Cannot read property 'select' of null
如何在if statement
内导航到TabsPage,并将第二个标签设为活动状态?也许还有另一种方法可以达到这个目的。