gpt4 book ai didi

javascript - 尝试从 create-react-app 中的 .json 文件中读取图像

转载 作者:行者123 更新时间:2023-11-30 14:32:39 24 4
gpt4 key购买 nike

enter image description here

我正在尝试将图像从我的 .json 文件加载到我的组件中,但图像没有加载。

Someone looks to have solved it, but I don't know what he is talking about in terms of "branching"

  "Bumper": [{
"id": 1,
"productSquareId": "BumperStubby",
"productImage": "bumper",
"companyImage": "logo.png",
"price": "$55.99"
},

const image1 = ProductInformation.Bumper[0].companyImage;
<img className = "MainImage" src ={image1}/>

我的图像与我的组件位于同一文件夹(组件)中。我在这里做错了什么?感谢您的宝贵时间。

最佳答案

看起来我解决了我的问题,但是通过将我的 .json 文件变成 .js 文件。

<img className = "MainImage" src ={bumper[0].productImage}/>

export const bumper = [
{
id: 1,
productSquareId: 'BumperStubby',
productImage: require('./bumper1.png'),
companyImage: require('./logo.png'),
price: '$55.99',

}
]

使用 .js 文件与使用 .json 文件在性能上有什么不同吗?

关于javascript - 尝试从 create-react-app 中的 .json 文件中读取图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50935876/

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