javascript - How to access Enum in typescript ? giving error "Element implicitly has an any type because index expressi

export enum r {color1 = "Red"color2 = "green"color3 = "blue"}ar = ["

export enum r {
  color1 = "Red"
  color2 = "green"
  color3 = "blue"
}

ar = ["color1", "color2"];
ar.map(e => {
  if (r[e as any] !== undefined) {
    return r[e]
  }
})

Above statement giving "Element implicitly has an any type because index expression is not of type number"

export enum r {
  color1 = "Red"
  color2 = "green"
  color3 = "blue"
}

ar = ["color1", "color2"];
ar.map(e => {
  if (r[e as any] !== undefined) {
    return r[e]
  }
})

Above statement giving "Element implicitly has an any type because index expression is not of type number"

Share Improve this question edited Jan 14, 2021 at 16:01 uminder 26.2k6 gold badges43 silver badges89 bronze badges asked Jan 14, 2021 at 15:47 user9485480user9485480 311 silver badge3 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

You need to type ar with keyof typeof to let TypeScript know your array contains keys from your enum:

export enum r {
  color1 = "Red",
  color2 = "green",
  color3 = "blue",
}

const ar: (keyof typeof r)[] = ["color1", "color2"];
const newVal = ar.map((e) => {
  if (r[e] !== undefined) {
    return r[e];
  }
});

Here is a good in-depth answer about it

You do not have mas after every item in your enum. However, the following is how you can typecast the argument to be type of key of the enum:

export enum r {
color1 = "Red",
color2 = "green",
color3 = "blue",
}

const ar = ["color1","color2"];
const new_ar = ar.filter(e => {
    if (e in r && r[e as keyof typeof r]) 
    {return true;}
    else {return false;}
})

The problem with your approach is you are using map and you need to return in every iteration. What you need is filter.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745628240a4636942.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信