在Angular中,如果使用了共享模块,但仍无法找到自定义管道,可能是因为未正确导入或声明该管道。下面是解决方法的代码示例:
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CustomPipe } from './custom.pipe';
@NgModule({
declarations: [
CustomPipe
],
imports: [
CommonModule
],
exports: [
CustomPipe
]
})
export class SharedModule { }
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SharedModule } from './shared/shared.module';
@NgModule({
declarations: [
// 组件声明
],
imports: [
CommonModule,
SharedModule // 导入共享模块
],
exports: [
// 导出组件
]
})
export class MyModule { }
{{ text | customPipe }}
确保在模板中正确使用了自定义管道的名称。
通过以上步骤,你应该能够在使用了共享模块的模块中找到并使用自定义管道。
上一篇:Angular 9 - 无法找到支持对象 'getData()' 的差异
下一篇:Angular 9 - 下载被禁止。发起或实例化下载的框架被沙箱限制,但未设置'allow-downloads'标志。