我想将按钮设置回我的孩子的页面,我正在使用弹出功能,但是它不起作用。
我正在使用此代码
import { IonicPage, NavController,} from 'ionic-angular';
constructor(public navCtrl: NavController, ) {
this.contactArray=JSON.stringify(this.navParams.get("contactArray"));
if(!this.contactArray || this.contactArray == ''){
this.navCtrl.pop();
}else{
this.loadContactDetails();
}
}
我明白了
错误:未被捕获(承诺):导航堆栈至少需要一个根页面 在c(polyfills.js:3)
请帮助
谢谢