码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-11-30 16:57:55      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:项目   ctr   初始化   har   实现   div   let   ons   ges   

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里面添加新模块即可。

 

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

标签:项目   ctr   初始化   har   实现   div   let   ons   ges   

原文地址:http://www.cnblogs.com/viola-sh/p/6118140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!