gpt4 book ai didi

javascript - TypeScript 错误 - 应有 1-2 个参数,但有 0 个或更多。 TS2556

转载 作者:行者123 更新时间:2023-12-03 23:11:28 31 4
gpt4 key购买 nike

我在 JavaScript 中使用了这个语句,但是当我尝试在 TypeScript 项目中使用它时出现错误。它在提示 fetch(...args)

const fetcher = (...args) => fetch(...args).then(response => response.json());

Expected 1-2 arguments, but got 0 or more. TS2556

最佳答案

这应该可以帮助您:

const fetcher = (...args: [input: RequestInfo, init?: RequestInit | undefined]) => fetch(...args).then(response => response.json());

您应该为 fetch 显式键入参数。 .它需要 1-2 个参数。
如果你想使用 rest运算符,您应该告诉 TS,您还期望在高阶函数中有两个参数
更新
通用方法。如果您想获取任何函数的参数类型,只需使用 Parameters实用程序。
type FetchParameters = Parameters<typeof fetch>

关于javascript - TypeScript 错误 - 应有 1-2 个参数,但有 0 个或更多。 TS2556,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65307025/

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