关于前端:ReactTS-element-implicitly-has-an-any-type-because告警解决

49次阅读

共计 425 个字符,预计需要花费 2 分钟才能阅读完成。

思否题目不能超过 64 个无效字符 emm…
残缺题目是

React element implicitly has an ‘any’ type because expression of type ‘string’ can’t be used to index type 告警解决

目前我遇到两种状况会呈现这个告警

情景一:
keyToNameMap[keyItem]

解决办法:
给 keyToNameMap 的 key 和 value 加上类型限度,如下图
加上 {[key: string]: string }

情景二:
同样的 keyToNameMap[keyItem]
但这里的 map (contentInfo)不是定义的常量。contentInfo 由 useState 创立,受 type ContentInfo 限度。

解决办法:
给 type ContentInfo 加上类型限度,如下图
加上 [key: string]: string | number;

完结

同步更新到本人的语雀
https://www.yuque.com/diracke…

正文完
 0