📅  最后修改于: 2022-03-11 14:48:34.853000             🧑  作者: Mango
import { YourPipeComponentName } from 'your_component_path';
class YourService {
constructor(private pipe: YourPipeComponentName) {}
YourFunction(value) {
this.pipe.transform(value, 'pipeFilter');
}
}