Ionic-3 Can't find Pipe
问题 I have just upgraded to Ionic 3.0.1 so I can use LazyLoading , and since that I can't use my custom Pipes : import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'StripHTML' }) export class StripHTML implements PipeTransform { transform(value, args) { let striped = value.replace(/(<([^>]+)>)/g, ""); if (args != null) { if (args.split != null) { striped = striped.split(args.split); if (args.index != null) { striped = striped[args.index]; } } } return striped; } } and in app.module