作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这样的类型:
enum Type {
A = 'A',
B = 'B',
C = 'C'
}
type Union =
| {
type: Type.A | Type.B;
key1: string
}
| {
type: Type.C;
key2: string
}
type EnumToUnionMap = {
[T in Type]: {
[k in keyof Extract<Union, {type: T}>]: string
}
}
我遇到的问题是
typeof EnumToUnionMap[Type.A]
是
never
(实际上,它是像
[x: string]: string
这样的通用键签名,但那是因为
Extract<Union, {type: T}>
在
never
是
T
或
Type.A
时返回类型
Type.B
)而
typeof EnumToUnionMap[Type.C]
是
{
type: Type.C,
key2: string
}
正如预期的那样。
type
中的
EnumToUnionMap[Type.A]
是
Type.A | Type.B
和
Type.A != (Type.A | Type.B)
所以它们不匹配,我们得到
never
。
type EnumToUnionMap = {
[T in Type]: {
[k in keyof Extract<Union, T in Union['type']>]: string
}
}
为什么我需要这样做:
{
type: Type,
key1: string,
key2: string
}
Type.A
和
Type.B
的警报都提供
key1
,而
Type.C
的警报提供
key2
。
const columnMap: EnumToUnionMap = {
[Type.A]: {
key1: 'Column name'
// Note that in actuality this object will contain
// multiple keys (i.e. multiple columns) for a
// given `Type` so creating a map
// between `Type -> column name` is not possible.
},
[Type.B]: {
key1: 'Different column name'
},
[Type.C]: {
key2: 'Another column name'
}
}
这样,我可以执行以下操作:
const toColumnText = (alert) => columnMap[alert.type]
...
if (alert.type === Type.A) {
const key1ColumnName = toColumnText(alert).key1 // typed as string
const key2ColumnName = toColumnText(alert).key2 // Typescript warns of undefined key
}
最佳答案
正如您所注意到的,您不能真正使用 the Extract
utility type在这里,因为工会成员之间的关系Union
和候选类型 {type: T}
你拥有的不是简单的可分配性。相反,您要查找成员 U
工会Union
使得 T extends U["type"]
.您可能不得不忘记 TypeScript 提供的实用程序类型,而是自己执行类型操作。EnumToUnionMap
的一种可能定义这是:
type EnumToUnionMap = { [T in Type]: Union extends infer U ? U extends { type: any } ? (
T extends U["type"] ? { [K in keyof U as Exclude<K, "type">]: U[K] } : never
) : never : never }
它可能看起来有点令人生畏;让我们确保它至少可以满足您的需求。 IntelliSense 表明它评估为:
/* type EnumToUnionMap = {
A: { key1: string; };
B: { key1: string; };
C: { key2: string; };
} */
看起来挺好的。
Type.A
,
Type.B
, 和
Type.C
.对于每个这样的枚举值
T
,我们需要拆分
Union
加入它的工会成员,并收集我们关心的那个。写作
Union extends infer U ? U extends { type: any } ? ...
用途
conditional type inference复制
Union
成一个新的类型参数
U
,然后可用于创建
distributive conditional type哪里
U
代表
Union
的个别工会成员(member).所以从现在开始,每当我们看到
U
,我们只处理
Union
的碎片,不是全部。
U
工会
Union
为了选择,我们评估条件类型
T extends U["type"] ? ... : never
.支票
T extends U["type"]
为真当且仅当
U
的
type
属性是
T
的父类(super class)型.如
T
是
Type.A
和
U
是
{type: Type.A | Type.B, ...}
,那么这是真的。但如果
T
是
Type.A
和
U
是
{type: Type.C, ...}
,那么这是错误的。通过返回
never
当检查为假时,我们只处理
Union
的“正确”成员.
U
,但我们不想只返回它,因为它仍然包含不受欢迎的
type
属性(property)。我们可以返回
Omit<U, "type">
使用
the Omit
utility type ,但不幸的是,这会导致像
Omit<{type: Type.A | Type.B; key1: string}, "type">
这样冗长的 IntelliSense而不是理想的
{key1: string}
.所以我在这里写我自己的
Omit
类型使用
key remapping in mapped types (文档解释了
Omit
的替代方法是如何工作的)。
EnumToUnionMap
type遍历
Type
的每个成员, 提取
Union
的成员谁的
type
属性是它的父类(super class)型,省略了
type
该成员的属性(property)。
关于typescript - 从联合类型中提取,其中鉴别器也是联合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67727394/
我写了一段代码,在比特流中连续 6 个“1”后添加一个“0”。但是如何解码呢? 这里是一个比特流的例子: original = {01101111110111000101111110001100...
我是一名优秀的程序员,十分优秀!