@actualwave/terminator-pipe 中文文档教程

发布于 4年前 浏览 12 项目主页 更新于 3年前

@actualwave/terminator-pipe

这只是一个什么都不做的管道,无论它得到什么输入都返回一个空字符串。 查看沙箱示例了解如何使用管道。

Installation

npm install @actualwave/terminator-pipe

可以用模块导入 用

import { TerminatorPipeModule } from '@actualwave/terminator-pipe';

@NgModule({
  imports: [
    TerminatorPipeModule,
    ...

Use

terminator 管道结束你的插值表达式,它不会显示任何内容。

<span>{{ date$ | async | date | terminator }}</span>

这个例子毫无意义,因为无论 date$ observable 返回什么值,最终它都不会渲染任何东西。 terminator 管道有别名 t800T800 以方便使用。

<span>{{ judgmentDay | date | T800 }}</span>

此外,这个包还提供了条件终止符 terminateIf(别名 t1000T1000),它也 acceps 布尔参数,以确定是否应该传递值或暴力终止。

<span>{{ connor.John | terminateIf : approvedForTermination }}</span>

@actualwave/terminator-pipe

This is simply a pipe that does nothing and returns an empty string no matter what input it gets. Check sandbox with an example on how to use the pipe.

Installation

npm install @actualwave/terminator-pipe

Can be imported with module

import { TerminatorPipeModule } from '@actualwave/terminator-pipe';

@NgModule({
  imports: [
    TerminatorPipeModule,
    ...

Use

End your interpolation expression with terminator pipe and it will display nothing.

<span>{{ date$ | async | date | terminator }}</span>

This example is pointless, because whatever values date$ observable returns, in the end it will render nothing. terminator pipe has aliases t800 and T800 for your convenience.

<span>{{ judgmentDay | date | T800 }}</span>

Additionally, this package provides conditional terminator terminateIf(aliases t1000 and T1000) which also acceps boolean parameter to determine if value should be passed or violently terminated.

<span>{{ connor.John | terminateIf : approvedForTermination }}</span>
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文