打字稿中具有联合类型键的松散类型对象
Posted
技术标签:
【中文标题】打字稿中具有联合类型键的松散类型对象【英文标题】:Loosely typed object with union type key in typescript 【发布时间】:2020-04-19 05:03:45 【问题描述】:我正在尝试使用联合类型键创建松散类型对象的接口。
export type ObjectsType = 'text' | 'image' | 'circleText';
export interface IAllowedObjects
[key: ObjectsType] : boolean;
但得到
索引签名参数类型不能是联合类型。考虑 改为使用映射对象类型
已经尝试了一些解决方案,但没有成功。
-
试过This解决方案
export type ObjectsType = 'text' | 'image' | 'circleText';
export interface IAllowedObjects
[key in ObjectsType] : boolean;
接口中的计算属性名称必须引用表达式 其类型是文字类型或“唯一符号”
计算属性名称的类型必须为“字符串”、“数字”、“符号”、 或“任何”。
【问题讨论】:
【参考方案1】:你只能用type aliases定义一个mapped type,接口不能这样做。
export type ObjectsType = 'text' | 'image' | 'circleText';
export type IAllowedObjects =
[key in ObjectsType]: boolean;
Code sample
【讨论】:
谢谢,解决方案有效,我导出的是界面而不是类型。【参考方案2】:您也可以使用Record 实用程序类型,其作用与 fords answer 相同
type ObjectsType = 'text' | 'image' | 'circleText'
type IAllowedObjects = Record<ObjectsType, boolean>
【讨论】:
以上是关于打字稿中具有联合类型键的松散类型对象的主要内容,如果未能解决你的问题,请参考以下文章