gpt4 book ai didi

javascript - 使用 Map() 函数通过 ReactJS 提取双层嵌套的 JSON 数据

转载 作者:行者123 更新时间:2023-12-02 22:37:51 25 4
gpt4 key购买 nike

我正在尝试提取下面“详细信息”部分下的“图像”对象中的各个图像。

似乎什么也没打印出来。寻找正确的方法来提取details.images.image1、2或3。

这是我目前正在使用的 JSON 数据:

{
"books": [
{
"title": "title 1",
"image": "/image1.jpg"
},
{
"title": "title 2",
"image": "/image2.jpg"
}
],
"details": [
{
"author": "book author",
"name": "Book name",
"price": 34.99,
"publisher": "Penguin Books",
"images": [
{
"image1": "/image1.jpg",
"image2": "/image2.jpg",
"image3": "/image3.jpg"
}
]
}
]
}

这也是我在 Book 组件中进行的 JSON 调用:

{staticdata.details.map(detail => (
<Book
book_name={detail.author}
book_price={detail.price}
image={detail.images.image1}
/>
))}

最佳答案

下面是访问这些嵌套属性并将它们记录到控制台的示例。看来您的尝试基本上是正确的,但 images 是一个数组。

const data = {
"books": [
{
"title": "title 1",
"image": "/image1.jpg"
},
{
"title": "title 2",
"image": "/image2.jpg"
}
],
"details": [
{
"author": "book author",
"name": "Book name",
"price": 34.99,
"publisher": "Penguin Books",
"images": [
{
"image1": "/image1.jpg",
"image2": "/image2.jpg",
"image3": "/image3.jpg"
}
]
}
]
}

data.details.map(detail => {
console.log(detail.author, detail.price, detail.images[0].image1);
});

关于javascript - 使用 Map() 函数通过 ReactJS 提取双层嵌套的 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58685608/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com