我试图在角度7的值的列表集合上实现地图运算符。我基本上需要获取vehicleType id的spf值。 此列表绑定到一个下拉控件。因此,每次用户在下拉列表中选择一个值时,该值的spf 需要检索并将其分配给组件上声明的字段。
VehicleTypes是列表集合,在其集合的每个元素中包含id和spf值
我该怎么做?
这是我的代码
IsVehicleDependent: boolean;
public vehicleTypeChanged(value: number): void {
this.FundDetails.VehicleTypes.pipe(map(x=> x.VehicleTypeId === value));
// Need to assign value to the result below
this.IsVehicleDependent =
}
屏幕截图