Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

ts中,如何将字符串数组转为联合类型,比如:

const arr = ['name', 'age', 'location', 'email'];

// 通过类型操作之后得到下面这种类型
type arrType = 'name' | 'age' | 'location' | 'email'

说明: 将字符串数组中的每一个字符串都作为联合类型中的一个类型


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

const arr = ['name', 'age', 'location', 'email'] as const;
type A = typeof arr[number];

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...