开发者问题收集

图像未在 React 应用程序中呈现

2022-02-26
681

无法在 React 中渲染图像,在浏览器控制台中,图像名称显示正确,但在 UI 上不显示。此外,检查元素后, img 标签中缺少 src 属性。请提供帮助。 这是示例脚本

function importAll(r) {
    let images = {};
    r.keys().map((item, index) => { images[item.replace('./', '')] = r(item); });
    return images;
}

const get_images = importAll(require.context('../../images', true, /\.(png|jpe?g|svg)$/));

const images = Object.entries(get_images).map(module => module[1].default);

return (
    <div className="product">
        <div>
            <Row>
                {products.map(product =>
                    <Col span={6} key={product.productId}>
                        <div >
                            
                            <div>{console.log(product.productImageName)}
                                {<Image src={images[product.productImageName]} width={200} 
height={200} />}
                            </div>
                            
                        </div>
                    </Col>
                )
                }
            </Row>
        </div>
    </div>
)
2个回答

您不需要导入图像。如果图像是存储库的一部分,那么您可以使用 src 目录中的 相对 路径。例如,假设 images 位于 src 下。>

const path = `images/${[product.productImageName]}`;
<Image src={path} />
Parag Diwan
2022-02-26

您应该尝试检查配置文件是否存在。如下所示:

{profile && profile.map((...

//Or

{profile?.map((...
Paulliano
2022-02-26