ionic2 Navigation实现报错:No component factory found for "MyComponent"

时间:2022-02-19 07:01:34

ionic2 写的代码里面,跳转的时候报了一个 No component factory found for “RechargeSucceed”

recharge() {
let actionSheet = this._actionSheetCtrl.create({
title: '付款详情',
buttons: [{
text: '确认付款',
handler: () => {
let navTransition = actionSheet.dismiss();
navTransition.then(() => {
this.nav.push(RechargeSucceed);
})
}
}]
});
actionSheet.present();
}

对应页面中的代码并没有错,在网上一查,发现是:app.module.ts中全面初始化并定义了项目中的模块,所以当跳转到详情页面的时候便新增了一个详情页的模块,此时没有及时更新app.module.ts中的内容。所以会报此错误。

解决办法:在app.module.ts 中引入新模块,并在declarations,entryComponents里面添加新模块即可。