gpt4 book ai didi

typescript :对象和基元之间的 keyof typeof union 永远不会

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

首先,我的问题有一些上下文:我有一个项目,我在其中通过 Socket.IO 接收一个对象,因此我没有关于它的类型信息。此外,它是一种相当复杂的类型,因此需要进行大量检查以确保接收到的数据是正确的。

问题是我需要访问由接收到的对象中的字符串指定的本地对象的属性。这适用于第一个维度,因为我可以将 any 类型的属性说明符转换为 keyof typeof无论我想访问什么(例如 this.property[<keyof typeof this.property> data.property] )。

结果变量的类型显然是一个相当冗长的联合类型(联合this.property拥有的所有属性的所有类型)。一旦这些属性之一是非原始类型 keyof typeof subproperty推断为 never .

通过之前所做的检查,我可以保证该属性存在,并且我有 99% 的把握代码一旦编译就会运行。只是编译器在提示。

下面是一些非常简单的代码,可以重现此行为以及观察到的和预期的类型。

const str = 'hi';
const obj = {};
const complexObj = {
name: 'complexObject',
innerObj: {
name: 'InnerObject',
},
};

let strUnion: typeof str | string; // type: string
let objUnion: typeof obj | string; // type: string | {}
let complexUnion: typeof complexObj | string; // type: string | { ... as expected ... }

let strTyped: keyof typeof str; // type: number | "toString" | "charAt" | ...
let objTyped: keyof typeof obj; // type: never (which makes sense as there are no keys)
let complexObjTyped: keyof typeof complexObj; // type: "name" | "innerObject"

let strUnionTyped: keyof typeof strUnion; // type: number | "toString" | ...
let objUnionTyped: keyof typeof objUnion; // type: never (expected: number | "toString" | ... (same as string))
let complexUnionTyped: keyof typeof complexUnion; // type: never (expected: "name" | "innerObject" | number | "toString" | ... and all the rest of the string properties ...)
let manuallyComplexUnionTyped: keyof string | { name: string, innerObj: { name: string }}; // type: number | "toString" | ... (works as expected)

这是 TypeScript(版本 3)的已知限制还是我在这里遗漏了什么?

最佳答案

如果您有联合,则只能访问公共(public)属性。 keyof 将为您提供某种类型的可公开访问的 key 。

对于 strUnionTypedstring 和字符串文字类型 'hi' 之间的联合,结果类型将具有与字符串相同的属性联合中的两种类型具有与字符串相同的键。

对于 objUnionTypedcomplexUnionTyped 联合没有公共(public)键,因此结果将是never

对于manuallyComplexUnionTyped,你得到的是string的键,因为你写的实际上是(keyof string) | { name: string, innerObj: { name: string }} 不是 keyof (string | { name: string, innerObj: { name: string }}) 所以你得到 string 在与您指定的对象类型的联合中。

要获取联合的所有成员的键,您可以使用条件类型:

type AllUnionMemberKeys<T> = T extends any ? keyof T : never;
let objUnionTyped: AllUnionMemberKeys<typeof objUnion>;
let complexUnionTyped: AllUnionMemberKeys<typeof complexUnion>;

编辑

条件类型帮助获取所有联合成员的键的原因是因为条件类型 distribute在裸类型参数上。所以在我们的例子中

AllUnionMemberKeys<typeof objUnion> = (keyof typeof obj) | (keyof string)

关于 typescript :对象和基元之间的 keyof typeof union 永远不会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52221574/

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