gpt4 book ai didi

arrays - 在 Typescript 中将字符串数组转换为枚举

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

我正在尝试使用 Typescript。

假设我有一个像这样的对象

let colors = {
RED: "r",
GREEN: "g",
BLUE: "b"
}

现在我想把它转换成一个enum类型

enum Colors = {
RED = "r",
GREEN = "g",
BLUE = "b"
}

更新:

我想要为 colors 对象生成的 typings 这样如果我向颜色对象添加另一个 key,它应该包含在 typings 中。

如果我这样做

colors['YELLOW'] = "y"

那么生成的typings应该是

declare enum colors {
RED = "r",
GREEN = "g",
BLUE = "b",
YELLOW = "y"
}

相反,生成的类型是

declare const colors {
[x: string]: string
}

我怎样才能做到这一点?

最佳答案

Enums « 枚举允许我们定义一组命名常量。使用枚举可以更轻松地记录意图,或创建一组不同的案例。 TypeScript 提供基于数字和字符串的枚举。

TypeScript 2.4 + String enums - 在 TypeScript 2.4 之前,TypeScript 仅支持基于数字的枚举,在这种情况下,只需在分配之前将字符串文字转换为 any,使用 2.4+ 则不再需要 any

enum Colors {
RED = <any>"R",
GREEN = <any>"G",
BLUE = <any>"B",
}

Java 脚本 Standard Style

var Colors;
(function (Colors) {
Colors["RED"] = "r";
Colors["GREEN"] = "g";
Colors["BLUE"] = "b";
})(Colors || (Colors = {}));

checkin TypeScript Fiddle fiddlesalad , typescriptlang


在效用函数下面创建一个 K:V来自字符串列表可能对您有帮助。

function strEnum<T extends string>(o: Array<T>): {[K in T]: K} {
return o.reduce((res, key) => {
res[key] = key;
return res;
}, Object.create(null));
}
let dynamicArrayJSON = [ 'RED', 'BLUE', 'GREEN' ]
const Colors = strEnum( dynamicArrayJSON )

@看

关于arrays - 在 Typescript 中将字符串数组转换为枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48483534/

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