gpt4 book ai didi

TypeScript:对象类型的索引签名隐式具有 'any' 类型

转载 作者:搜寻专家 更新时间:2023-10-30 20:33:07 26 4
gpt4 key购买 nike

我的功能有问题:

    copyObject<T> (object:T):T {
var objectCopy = <T>{};
for (var key in object) {
if (object.hasOwnProperty(key)) {
objectCopy[key] = object[key];
}
}
return objectCopy;
}

我有以下错误:

Index signature of object type implicitly has an 'any' type.

我该如何解决?

最佳答案

class test<T> {
copyObject<T> (object:T):T {
var objectCopy = <T>{};
for (var key in object) {
if (object.hasOwnProperty(key)) {
objectCopy[key] = object[key];
}
}
return objectCopy;
}
}

如果我按如下方式运行代码

c:\Work\TypeScript>tsc hello.ts

它工作正常。但是,下面的代码:

c:\Work\TypeScript>tsc --noImplicitAny hello.ts

抛出

hello.ts(6,17): error TS7017: Index signature of object type implicitly has an 'any' type.
hello.ts(6,35): error TS7017: Index signature of object type implicitly has an 'any' type.

因此,如果您禁用 noImplicitAny 标志,它将起作用。

似乎还有另一种选择,因为 tsc 支持以下标志:

--suppressImplicitAnyIndexErrors   Suppress noImplicitAny errors for indexing objects lacking index signatures.

这对我也有用:

tsc --noImplicitAny --suppressImplicitAnyIndexErrors hello.ts

更新:

class test<T> {
copyObject<T> (object:T):T {
let objectCopy:any = <T>{};
let objectSource:any = object;
for (var key in objectSource) {
if (objectSource.hasOwnProperty(key)) {
objectCopy[key] = objectSource[key];
}
}
return objectCopy;
}
}

此代码无需更改任何编译器标志即可运行。

关于TypeScript:对象类型的索引签名隐式具有 'any' 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34509636/

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