angular 管道的运用

这篇博客介绍了如何在Angular应用中创建一个自定义管道`filterListType.pipe.ts`,用于过滤数组中type属性不等于3的元素。在组件模块中引入并使用该管道,可以在模板中直接对数据进行过滤,例如在`<option-component>`中展示过滤后的结果。
摘要由CSDN通过智能技术生成

简单版 管道 过滤数组

一,管道文件
filter-list-type.pipe.ts

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
    name: 'filterListType',
    pure:false
})
// 过滤数组中tyle不为3的 元素
export class FilterListTypePipe implements PipeTransform {
    transform(value: any[]):any[]{
        if(value){
            let mtepValue = value.filter((item: any) => {
                return item.type == 3;
            });
            return mtepValue;
        }
    }
}

二,在组件***.module.ts 中引用
import { FilterListTypePipe } from './filter-list-type.pipe'

@NgModule({
  declarations: [
FilterListTypePipe
],
  exports: [FilterListTypePipe],
  providers: [
    FilterListTypePipe
  ]})

三,html 中使用
//过滤数组中tyle不为3的 元素
<option-component *ngFor="let it of tb.fields | filterListType" [value]="it.name" [label]="it.name"></option-component>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值