Angular 找不到自定义管道

Angular custom pipe not be found

在我的应用程序中,我需要一个全局的自定义管道,我尝试按照 angular pipe 来实现它 但我总是看到这个错误

Template parse errors: The pipe 'formatdate' could not be found

formatdate.pipe

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'formatdate'
})

export class FormatdatePipe implements PipeTransform {

  transform(dateJson: any, args?: any): any {
.
 //code...
.
      return dateJson;
    }
  }
}

app.module

import { FormatdatePipe } from './shared/pipes/formatdate.pipe';
@NgModule({
  declarations: [
    AppComponent, FormatdatePipe 
  ],

如果我将它导入到我的所有模块而不是主体中,这个管道就可以工作 app.module,我需要一个常规管道模块还是什么

管道(如组件和指令)不像服务那样​​在全球范围内工作。

您需要在某些模块中定义管道。然后您可以在该模块中定义的组件中使用它。另一种方法是将管道添加到模块的导出,然后将该模块导入到要使用它的模块中。

定义如下:

import { FormatdatePipe } from './shared/pipes/formatdate.pipe';

@NgModule({
  declarations: [
    FormatdatePipe 
  ],
  exports: [
    FormatdatePipe
  ]
})   
export class SomeUtilModule {}

然后将这个模块导入到你想使用它的地方,它应该可以工作:)