@actualwave/terminator-pipe 中文文档教程
@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
管道有别名 t800
和 T800
以方便使用。
<span>{{ judgmentDay | date | T800 }}</span>
此外,这个包还提供了条件终止符 terminateIf
(别名 t1000
和 T1000
),它也 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>
你可能也喜欢
- 4chanjs 中文文档教程
- @0x-klaytn/json-schemas 中文文档教程
- @1hive/1hive-ui 中文文档教程
- @24hr/react-hooks 中文文档教程
- @42.nl/ui-core-spinner 中文文档教程
- @4alltecnologia/http-errors 中文文档教程
- @a6kme/create-npm-package 中文文档教程
- @abhijit945org/try-semantic-versioning 中文文档教程
- @abi-software/simulationvuer 中文文档教程
- @abstractapi/javascript-phone-validation 中文文档教程