如何在 TypeScript 中通过索引访问通用对象的属性?

How do I access the properties of a generic object by index in TypeScript?

我有以下函数遍历对象的所有属性并将它们从 ISO 字符串转换为日期:

function findAndConvertDates<T>(objectWithStringDates: T): T {

    for (let key in Object.keys(objectWithStringDates)) {

        if (ISO_REGEX.test(objectWithStringDates[key])) {
            objectWithStringDates[key] = new Date(objectWithStringDates[key]);

        } else if (typeof objectWithStringDates[key] === 'object') {
            objectWithStringDates[key] = findAndConvertDates(
                objectWithStringDates[key]
            );
        }
    }
    return objectWithStringDates;
}

TypeScript 一直告诉我 Element implicitly has an 'any' type because type '{}' has no index signature - 指的是 objectWithStringDates[key].

的无数个实例

考虑到该对象是作为通用对象传入的,我将如何在没有显式索引签名的情况下访问这些属性?

(否则我如何提供索引签名或抑制此错误?)

谢谢!

您可以像这样制作可索引的签名:

function findAndConvertDates<T extends { [key: string]: any }>(objectWithStringDates: T): T {