gpt4 book ai didi

typescript - 类型 '"测试 "' cannot be used to index type ' T'

转载 作者:行者123 更新时间:2023-12-03 15:57:56 25 4
gpt4 key购买 nike

知道如何实现这一目标吗?

function getTest<T>(): T["test"] {
// ...
}

...或动态:
function getTest<T, U>(): T[U] {
// ...
}

不幸的是,编译器说 Type '“test”' cannot be used to index type 'T' .我正在使用 TypeScript 2.4.2。

最佳答案

请注意,要使类型推断起作用,您需要将参数传递给使用一个或多个泛型类型参数的函数。

否则会被推断为 {}any .

对于第一种情况:

function getTest<T, U extends {test: T}>(): T {}

对于第二种情况:
function getTest<T, K extends keyof T>(): T[K] {}

关于typescript - 类型 '"测试 "' cannot be used to index type ' T',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45546159/

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