0
点赞
收藏
分享

微信扫一扫

Angular:No component factory found for ChildComponent. Did you add it to @NgModule.entryComponents?

沪钢木子 2023-04-18 阅读 67


在使用 ngx-bootstrap/modal 弹出模态框时报下面错误:

ERROR Error: No component factory found for ChildComponent. Did you add it to @NgModule.entryComponents?

解决办法就是在 module.ts 里的 @NgModule 里追加 entryComponents: [ChildComponent]

@NgModule({
  entryComponents: [ChildComponent]
})

 

举报

相关推荐

0 条评论