如何使用“useState”在打字稿中?

发布于 2025-01-11 19:20:28 字数 356 浏览 0 评论 0原文

我如何在 Typescript 中做这样简单的事情?

const [text, setText] = useState("");

我遇到了很多错误,但我不知道如何修复它们。

Parameter 'text' implicitly has an 'any' type.ts(7006)
Parameter 'setText' implicitly has an 'any' type.ts(7006)
'useState', which lacks return-type annotation, implicitly has an 'any' return type.ts(7010)

How do I do something simple like this in Typescript?

const [text, setText] = useState("");

I'm getting a lot of errors, and I don't know how to fix them.

Parameter 'text' implicitly has an 'any' type.ts(7006)
Parameter 'setText' implicitly has an 'any' type.ts(7006)
'useState', which lacks return-type annotation, implicitly has an 'any' return type.ts(7010)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

dawn曙光 2025-01-18 19:20:28

正如 Jared Smith 建议的那样,您只需安装 @types/react 软件包即可带有

yarn add -D @types/react

or 的

npm install --save-dev @types/react

示例如果您的默认值与实际值的类型相同,则用法很简单,但如果您有多种可能的类型,则必须自己指定类型。 Fe 如果状态可以为 null 或字符串:

const [value, setValue] = useState<string | null>(null);

没有 类型注释,当您尝试使用以下命令将字符串设置为值时,您将收到错误

setValue("some string");

As Jared Smith suggested, you just need to install the @types/react package for example with

yarn add -D @types/react

or

npm install --save-dev @types/react

The usage is straightforward if your default value is of the same type as the actual value, but if you have multiple possible types than you have to specify the type yourself. F.e. if the state can be null or a string:

const [value, setValue] = useState<string | null>(null);

without the <string | null> type annotation you will get an error when you try to set a string as a value with

setValue("some string");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文