gpt4 book ai didi

Typescript - 从另一个联合类型的字段值中获取联合类型

转载 作者:搜寻专家 更新时间:2023-10-30 21:25:21 24 4
gpt4 key购买 nike

在 Typescript 中,是否可以从另一个联合类型的字段值中获取一个联合类型?

type MyUnionType = 
| { foo: 'a', bar: 1 }
| { foo: 'b', bar: 2 }
| { foo: 'c', bar: 3 }

// can I generate this automatically?
// i.e. a union of the possible values of foo in MyUnionType?
type Foos = 'a' | 'b' | 'c'

我希望 Pick<MyUnionType, 'foo'>可能会这样做,但它不太有效 - 它返回我想要的类型但嵌套在 foo 下字段:{ foo: 'a' | 'b' | 'c' }

最佳答案

类型 Foos = MyUnionType['foo'] works只要每个类型都有一个 foo 字段:

type MyUnionType = 
| { foo: 'a', bar: 1 }
| { foo: 'b', bar: 2 }
| { foo: 'c', bar: 3 }

type FooType = MyUnionType['foo']
// FooType = "a" | "b" | "c"

如果您需要通过异构联合类型进行分发,您可以 filter向下到联合字段中的那些类型:

type PickField<T, K extends string> = T extends Record<K, any> ? T[K] : never;

然后你可以use :

type MyUnionType = 
| { foo: 'a', bar: 1 }
| { foo: 'b', bar: 2 }
| { foo: 'c', bar: 3 }
| { bar: 4 }

type FooType = MyUnionType['foo']
// Property 'foo' does not exist on type 'MyUnionType'. :-(

type FooType2 = PickField<MyUnionType, 'foo'>
// type FooType2 = "a" | "b" | "c"

type PickField<T, K extends string> = T extends Record<K, any> ? T[K] : never;
// Alternatively, you could return `undefined` instead of `never`
// in the false branch to capture the potentially missing data

关于Typescript - 从另一个联合类型的字段值中获取联合类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57640575/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com