Img不加载,但alt标签加载



我遇到了一个问题,当试图加载一个图像在反应良好的工作。我尝试了一些解决方案,从安装webpack到从源文件导入img,都没有成功。当我在开发模式下进入检查器时,它显示我的alt已加载,但显示img错误。当我在开发人员模式下编译所有代码或控制台中的任何代码时,我没有得到任何错误

Data.js该文件位于多个文件夹中,如component>InfoSection>Data.js

export const homeObjOne = {
id: 'home',
lightBg: false,
lightText: true,
lightTextDesc: true,
topLine: 'test',
headline: 'tester in the making',
description: 'this will be the best website ever to exist',
buttonLabel: 'GO',
imgStart: true,
img: require('../../images/hacker.svg'),
alt: 'hacker',
dark: true,
primary: true,
darkText: false
}

index.js也在Data.js文件夹中文件

import React from 'react'
import {Button} from '../ButtonElements';
import {
InfoContainer,
InfoWrapper,
InfoRow,
Column1,
Column2,
TextWrapper,
TopLine,
Heading,
Subtitle,
BtnWrap,
ImgWrap,
Img
} from './InfoElements';
const InfoSection = ({lightBg, id, imgStart, topLine,lightText,
headline,darkText,description,buttonLabel,img,alt}) => {
return ( 
<>
<InfoContainer lightBg={lightBg} id={id}>
<InfoWrapper>
<InfoRow imgStart={imgStart}>
<Column1>
<TextWrapper>
<TopLine>{topLine}</TopLine>
<Heading lightText={lightText}>{headline}</Heading>
<Subtitle darkText={darkText}>{description}</Subtitle>
<BtnWrap>
<Button to='Home'>{buttonLabel}</Button>
</BtnWrap>
</TextWrapper>
</Column1>
<Column2>
<ImgWrap>
<Img src={img} alt={alt}/>
</ImgWrap>
</Column2>
</InfoRow>
</InfoWrapper>
</InfoContainer>  
</>
)
}
export default InfoSection

InfoElements.js也和上面的两个文件在同一个文件夹

import styled from 'styled-components';
export const InfoContainer = styled.div`
color: #fff;
background: ${({lightBg}) => (lightBg ? '#f9f9f9' : '#010606')};
@media screen and (max-width: 768px){
padding: 100px 0;
}
`;
export const InfoWrapper = styled.div`
display: grid;
z-index: 1;
height: 860px;
width: 100%;
max-width: 1100px;
margin-right: auto;
margin-left: auto;
padding: 0 24px;
justify-content: cneter;
`;
export const InfoRow = styled.div`
display: grid;
grid-auto-columns: minmax(auto, 1fr);
align-items: center;
grid-template-areas: ${({imgStart}) => (imgStart ? `'col2 col1'` : `'col1 col2'`)};
@media screen and (max-width: 768px){
grid-template-areas: ${({imgStart}) => (imgStart ? `'col1' 'col2'` : `'col1 col1' 'col2 col2'` )} 
}
`;
export const Column1 = styled.div`
margin-bottom: 15px;
padding: 0 15px;
grid-area: col1;
`;
export const Column2 = styled.div`
margin-bottom: 15px;
padding: 0 15px;
grid-area: col2;
`;
export const TextWrapper = styled.div`
max-width: 540px;
padding-top: 0;
padding-bottom: 60px;
`;
export const TopLine = styled.p`
color: #01bf71;
font-size: 16px;
line-height: 16px;
font-weight: 700;
letter-spacing: 1.4px;
text-transform: uppercase:
margin-bottom:  16px;
`;
export const Heading = styled.h1`
margin-bottom: 24px;
font-size: 48px;
line-height: 1.1;
font-weight: 600;
color: ${({lightText}) => (lightText ? '#f7f8fa' : '#010606')};
@media screen and (max-width: 480px){
font-size: 32px;
}
`;
export const Subtitle = styled.p`
max-width: 440px;
margin-bottom:  35px;
font-size: 18px;
line-height: 24px;
color: ${({darkText}) => (darkText ? '#010606' : '#fff')};
`;
export const BtnWrap = styled.div`
display: flex;
justify-content: flex-start;
`;
export const ImgWrap = styled.div`
max-width: 555px;
height: 100%;
`;
export const Img = styled.img`
width: 100%;
margin: 0 0 10px 0;
padding-right: 0;
`;

它看起来是这样的,这就是为什么不能看到图像。

<img src="[object Object]" alt="fdsfgds">

你必须改变访问图像的方式。

import img from '../../images/hacker.svg';
<img src={img} alt="fdsfgds">

所以,而不是使用Data.js文件,持有img,然后调用img片段内的index.js文件。我将路径导入到index.js文件中,并将其调用到Img片段

相关内容

  • 没有找到相关文章

最新更新