Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.9k views
in Technique[技术] by (71.8m points)

typescript 将字符串数组转为联合类型

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

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

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

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
const arr = ['name', 'age', 'location', 'email'] as const;
type A = typeof arr[number];

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...