您好我正在尝试创建一个复选框角度管道,可以在检查时过滤我的产品。核对表是动态的,同一个JSON文件中的列表也是动态的 -
复选框 - 以下代码在组件
中创建复选框<div *ngFor="let b of prod.brand">
<input type="checkbox" value="{{b.BrandName}}" id="{{b.id}}" name="brandArray" [(ngModel)]="b[BrandSelected]">
<label for="{{b.id}}">{{b.BrandName}}</label>
</div>
产品列表 - 以下代码用于获取产品列表
<div *ngFor="let prod of productListShow">
<div class="col-md-4" *ngFor="let product of prod.product | selectBrand: brandType">
<div class="sp-list-inner">
<figure>
<a href="#" target="_blank">
<img src="{{product.productImage}}" alt="{{product.productImageAlt}}">
<figcaption>
<h5 class="product-inner-title">{{product.productName}}</h5>
</figcaption>
</a>
</figure>
</div>
</div>
</div>
复选框管道 - 以下代码是我在选择特定复选框时过滤产品时遇到的问题
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'selectBrand'
})
export class SelectBrandPipe implements PipeTransform {
transform(brand: any, brandType?: any): any {
console.log('brand', brandType);
if (!brandType || brandType.length === 0) return brand;
return brand.filter(brandName =>
brandType.includes(brandName.companyName));
}
}
我正在使用此服务调用的列表。在该服务中,我使用productList: Products[];
作为以下列表 -
export const PRODUCTS: Products[] = [
{
id: 1,
productCat:'Jeans',
brand: [
{
brandId: 'B1',
BrandName: 'Brand-1',
BrandSelected: true
},
{
brandId: 'B2',
BrandName: 'Brand-2',
BrandSelected: true
},
],
product: [
{
productId: 2,
productName: 'Brand 2 prod',
companyName: 'Brand-1',
},
{
productId: 3,
productName: 'Brand 2 prod',
companyName: 'Brand-2',
},
],
},
]
请告知我如何更正此问题。如果还有其他方法而不是管道,请分享
答案 0 :(得分:1)
在组件中未定义brandType。检查您的组件文件(以.ts结尾),看看是否定义了brandType(它不应该)。
测试这个假设是最容易的,只需将一些字符串传递给管道并查看,如果它会说出未定义的其他内容。
又名。
<div class="col-md-4" *ngFor="let product of prod.product | selectBrand: 'car-brand'">
如果它会记录品牌汽车品牌&#34;从管道中的console.log开始,您肯定会知道初始化brandType变量时出现问题。
编辑1:
最常见的是初始化和修改组件中的变量。阿卡。
@Component..
export class ComponentA implements OnInit {
public brandType: string = 'car';
ngOnInit() { }
}