标签: angular ng2-bootstrap
RC6。使用ng2-bootstrap中的模态组件。工作正常,直到我将应用程序分成模块。现在在延迟加载的模块中,当我尝试调用模态组件的.show()方法时,我收到错误:No provider for AppComponent!
.show()
No provider for AppComponent!
您可能已经猜到AppComponent是应用程序根模块中的主要/默认组件。这个模态事物如何知道AppComponent的存在?
谢谢!
答案 0 :(得分:1)
由于这个hack来获取root应用程序组件:
https://github.com/valor-software/ng2-bootstrap/blob/development/components/utils/components-helper.service.ts#L41-L49