angular4的ng2-opd-popup问题

时间:2018-03-09 06:40:26

标签: html angular typescript rxjs

我安装了ng2-opd-popup模块并尝试通过导入" PopupModule.forRoot()"从app.module.ts导入if。它会产生以下错误。

It produce following error.

我使用的是typescript版本为2.4.2,rxjs版本为5.4.2。 我尝试使用rxjs/Subject.d.ts error : Class 'Subject<T>' incorrectly extends base class 'Observable<T>'How do I get around this "Subject incorrectly extends Observable" error in TypeScript 2.4 and RxJS 5.x?中的给定解决方案来修复它。这两种解决方案对我都没有用。任何人都可以提出任何建议来解决这个问题吗?

我在这里应用了ng2-opd-popup模块,通过按钮点击事件作为我的目的来设置弹出窗口。

1 个答案:

答案 0 :(得分:1)

{p}在tsconfig.json文件中添加以下代码段

{
"compilerOptions" : {
noStrictGenericChecks : true
}
}

它可能会帮助你生存