zoukankan      html  css  js  c++  java
  • ionic2 Navigation实现报错:No component factory found for "MyComponent"

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

  • 相关阅读:
    装饰器
    内置函数
    文件操作
    函数
    数据结构[总结笔记]
    汉诺塔解题思路
    springboot事物
    mysql5.7.29 zip包安装教程
    mysql常用语句【转载】
    springboot+mysql+jpa+sharding-jdbc+druid读写分离
  • 原文地址:https://www.cnblogs.com/viola-sh/p/6118140.html
Copyright © 2011-2022 走看看