作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的应用程序中实现了延迟加载。我的一项服务需要包含 DecimalPipe。
服务 --> 共享模块 --> 应用程序模块
这是我的结构。我已经在 app.module.ts 中包含了“CommonModule”,我的服务也需要十进制管道。
Type DecimalPipe is part of the declarations of 2 modules: CommonModule and SharedModule! Please consider moving DecimalPipe to a higher module that imports CommonModule and SharedModule. You can also create a new NgModule that exports and includes DecimalPipe then import that NgModule in CommonModule and SharedModule.
NullInjectorError: No provider for DecimalPipe!
最佳答案
您需要在提供服务的模块中提供 DecimalPipe
例如,如果您的服务是“providedIn: 'root'”
那么你应该像这样在你的 AppModule 中提供 DecimalPipe:
import {DecimalPipe} from '@angular/common';
@NgModule({
declarations: [
AppComponent,
],
imports: [ ],
providers: [DecimalPipe],
exports: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
关于angular - NullInjectorError : No provider for DecimalPipe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58277592/
我是一名优秀的程序员,十分优秀!