如何使用“useState”在打字稿中?
我如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Jared Smith 建议的那样,您只需安装
@types/react
软件包即可带有or 的
示例如果您的默认值与实际值的类型相同,则用法很简单,但如果您有多种可能的类型,则必须自己指定类型。 Fe 如果状态可以为
null
或字符串:没有
类型注释,当您尝试使用以下命令将字符串设置为值时,您将收到错误As Jared Smith suggested, you just need to install the
@types/react
package for example withor
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:without the
<string | null>
type annotation you will get an error when you try to set a string as a value with