2017-02-08 133 views

回答

2

檢查導航來自疊加組件部分the Ionic doc

試用您的模式:

import { App, ViewController } from 'ionic-angular'; 

構造:注射應用

constructor(
     public viewCtrl: ViewController 
     public app: App 
    ) {} 

中序導航,

this.app.getRootNav().push(TwoPage); 
相關問題