假设有个枚举
enum Goods {
aaa: 1,
bbb: 2
}
let str = 'aaa'
如果我直接使用 Goods[str] 会ts报错,实际上能运行
如果要避免这个报错
需要用的时候如下
Goods[str as keyof typeof Goods]
假设有个枚举
enum Goods {
aaa: 1,
bbb: 2
}
let str = 'aaa'
如果我直接使用 Goods[str] 会ts报错,实际上能运行
如果要避免这个报错
需要用的时候如下
Goods[str as keyof typeof Goods]
本文标题:TS里枚举值使用报红
本文链接:https://www.haomeiwen.com/subject/wqvhmdtx.html
网友评论