javascript 为什么我有这个错误“未捕获的TypeError:posts.map不是函数”

v2g6jxz6  于 2022-12-21  发布在  Java
关注(0)|答案(1)|浏览(163)

I changed posts to posts? and i've tested others solutions but nothing does working
我在Map上使用了&&,但没有任何效果,在useState上我添加了接口
它使用相同的json语法并且我已经修改了

useState([])

useState<Pulse[]>([])
wztqucjr

wztqucjr1#

问题是data.pulse.outputValue是字符串,而不是数组。请检查浏览器中的响应:https://beacon.nist.gov/beacon/2.0/chain/last/pulse/last
.map(...)函数只能处理数组,不能处理字符串。

相关问题