0

目前,我在 angular6 的项目中工作,我正确配置了 ng-block-ui(我已经在 angular5 的一个项目中使用了 ng-block-ui),但是我遇到了 ng-block-ui 的问题在组件模板中绑定时如下

block-ui' is not a known element:
1. If 'block-ui' is an Angular component, then verify that it is part of this module.
2. If 'block-ui' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("
[ERROR ->]<block-ui>
 <!-- Your app markup here -->
</block-ui>
"): ng:///HtmlLayoutModule/AdminComponent.html@0:0
Error: Template parse errors:

这是我正在使用的版本

"ng-block-ui": "^1.0.4",
"primeng": "^6.0.0-alpha.1",
"rxjs": "^6.2.0",
"rxjs-compat": "^6.2.0",
4

2 回答 2

0

截至目前,与RxJS 6ng-block-ui不兼容。您可以尝试使用以确保向后兼容性。有关更多信息,您可以访问此链接:https ://github.com/kuuurt13/ng-block-ui/issues/61rxjs-compact

于 2018-06-11T10:35:52.043 回答
-1
import { BlockUIModule } from 'ng-block-ui';

@NgModule({
    BlockUIModule.forRoot()
  ]
})

import blockui in module.ts
于 2019-07-30T04:17:21.650 回答