我是TypeScript的新手,我不知道我需要做什么来修复生成TS7015错误(使用字符串变量引用枚举成员)的行,因为紧接着它的行没有错误(使用字符串文本引用枚举成员):
enum State {
Happy = 0,
Sad = 1,
Drunk = 2
}
function Emote(enumKey:string) {
console.log(State[enumKey]); // error TS7015: Element implicitly has an 'any' type because index expression is not of type 'number'.
console.log(State["Happy"]); // no error
}
在项目的tsconfig.json
中设置"noImplicitAny": true
,检测到错误
在项目的tsconfig.json
中设置"noImplictAny": false
,未检测到错误
我用"ntypescript": "^1.201603060104.1"
编译
我现在使用"tsc": "1.8.10"
进行编译
C:>npm install -g typescript
`-- typescript@1.8.10
验证安装:
C:\>tsc --version
Version 1.8.10
下面是我的tsconfig.json
文件:
{
"compileOnSave": true,
"compilerOptions": {
"target": "ES5",
"module": "System",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": true,
"sourceMap": true,
"mapRoot": "map/",
"diagnostics": true
},
"exclude": [
"node_modules",
"typings"
]
}
下面是编译器的输出:
C:\>tsc
test.ts(8,17): error TS7015: Element implicitly has an 'any' type because index expression is not of type 'number'.
4条答案
按热度按时间osh3o9ms1#
如果您使用的是TypeScript 2.1+,则可以将
enumKey
的类型更改为keyof typeof State
,如下所示:或者,如果函数的输入要求为
string
,则为:说明:
因为
enumKey
是一个任意的string
,所以TypeScript不知道enumKey
是否是State
的成员的名称,所以它生成了一个错误。TypeScript 2.1引入了keyof
运算符,该运算符返回一个类型的已知公共属性名称的并集。使用keyof
允许我们Assert该属性确实在目标对象中。但是,在创建枚举时,TypeScript实际上同时生成 * type *(通常是
number
的子类型)和 * 值 *(可以在表达式中引用的枚举对象)。当你写keyof State
时,你实际上会得到number
的字面属性名的并集。要想得到枚举对象的属性名,您可以使用keyof typeof State
。资料来源:
https://github.com/Microsoft/TypeScript/issues/13775#issuecomment-276381229https://www.typescriptlang.org/docs/handbook/enums.html#enums-at-compile-time
ulydmbyx2#
我怀疑这与TS 1.8.x在这些情况下对字符串常量的新支持有关。TS碰巧知道“Happy”是一个有效的字符串索引,但它不知道
enumKey
是否有效。您可以通过将其强制转换为<any>
来修复它,如下所示:(BTW,我认为这是新的:我无法在1.8.9中重现此错误,但一旦我升级到1.8.10,我就可以重现此错误。)
同样有趣的是,我本以为它不会出错,但它没有:
一定是关于TS规范的一些东西我不明白,或者也许他们只是还没有得到周围修复位。
bejyjqdl3#
您可以使用compiler选项防止此错误,而不会丢失整个严格的空值检查
https://www.typescriptlang.org/tsconfig#suppressImplicitAnyIndexErrors
请注意,此选项在Typescript 5.0中不建议使用,在Typescript 5.5中已删除:https://devblogs.microsoft.com/typescript/announcing-typescript-5-0-beta/#deprecations-and-default-changes
ukxgm1gy4#
这就是我必须做的让编译器满意的事情