ionic3 路由跳转

选项卡之间跳转
this.navCtrl.push(nextPage);

进入详情页
import { App } from 'ionic-angular';
需要先获取root页面,从root页面进行跳转即可:
this.app.getRootNav().push(nextPage);

你可能感兴趣的:(ionic3 路由跳转)