我有一个应用程序,需要引导用户一步一步。我知道我们可以使用navpush
和navpop
来浏览页面。但是,pop()
如何回到第一页?
如果我有3页,我尝试的是//html
<button (click)="gotoAdopt()">
Back to Adopt
</button>
//component.ts
gotoAdopt(event){
// That's right, we're pushing to ourselves!
this.navCtrl.pop();
this.navCtrl.pop();///<-- pop() again to go back to first page
}
返回2次:
{{1}}
但我认为有更好的解决方案。