如何将<mat-select multiple ...>
绑定到枚举标志?
我的TypeScript枚举标志定义如下:
export enum CarType {
Sedan = 1 << 0, // 001
Coupe = 1 << 1, // 010
Jeep = 1 << 2 // 100
}
然后我有一个名为 desiredCarType 的属性,其中包含一个人想要查找的所有不同的汽车类型。例如,可能正在寻找轿车或吉普车:
public desiredCarTypes: CarType = CarType.Sedan | CarType.Jeep;
我现在想将我的选择框绑定到属性 desiredCarType 。
请参阅我的Plunker进行初步尝试:http://embed.plnkr.co/i4ALFU/。我假设我不能直接绑定但不知何故必须将属性拆分为数组然后再返回。