标签: typescript enums
我想使用带有枚举数组的prototype.array.includes medthod作为:
export enum Item { item1, item2, item3 } var tab:item[] = [Item.item1, Item.item2] tab.includes(Item.item1) //this doesn't work
你知道原因吗?它仅适用于原始类型吗?您有其他选择吗?