是否可以在代码中使用管道?

Is it possible to use a pipe in the code?

当我在模板中使用自定义管道时,它是这样的:

{{user|userName}}

而且效果很好。

是否可以在代码中使用管道?

我尝试这样使用它:

let name = `${user|userName}`;

但是显示

userName is not defined

我的替代方法是在代码中手动使用 db.collection.findOne()。但是有什么聪明的办法吗?

@Siva 是正确的。谢谢!

所以在组件中使用管道的方式是这样的:

let name = new UserNamePipe().transform(user);

另一个类似的问题。

首先在模块的 providers 中声明管道:

import { YourPipeComponentName } from 'your_component_path';

@NgModule({
  providers: [
    YourPipeComponentName
  ]
})
export class YourServiceModule {
}

然后你可以在这样的组件中使用@Pipe

import { YourPipeComponentName } from 'your_component_path';

class YourService {

  constructor(private pipe: YourPipeComponentName) {}

  YourFunction(value) {
    this.pipe.transform(value, 'pipeFilter');
  }
}