react Js 数据数组

问题描述 投票:0回答:1

我有数据,并且我已成功调用它,但在数据内部有一组我无法调用

我使用map函数正确调用了数据标题、描述和imgUrl,但我不知道如何在列表中调用数组(技术)

代码enter image description here

数据enter image description here

我尝试了很多方法并试图在群内召唤她,但没有成功

reactjs function dictionary
1个回答
0
投票

您可以将其显示为列表 -

        <ul>
          {technologies.map((tech, index) => (
            <li key={index}>{tech}</li>
          ))}
        </ul>
© www.soinside.com 2019 - 2024. All rights reserved.