인프런 커뮤니티 질문&답변

kkk님의 프로필 이미지
kkk

작성한 질문수

비전공자를 위한 진짜 입문 올인원 개발 부트캠프

[그랩마켓] React로 웹 개발하기 - 2

그림들을 못불러오는 문제

작성

·

146

1

웹화면에서 카드섹션들을 불러오지 못해서 혹시나 하고 강사님 목서버 주소로 입력하니 카드 섹션들이 불려와집니다.

axios.get("주소") 

다른 모든 코드들은 강사님과 동일합니다.

터미널에는 이런게 뜹니다.----------------------------

 Line 25:11:  img elements must have an alt prop, either with meaningful text, or an empty string for decorative images  jsx-a11y/alt-text

  Line 30:11:  img elements must have an alt prop, either with meaningful text, or an empty string for decorative images  jsx-a11y/alt-text

  Line 38:19:  img elements must have an alt prop, either with meaningful text, or an empty string for decorative images  jsx-a11y/alt-text

  Line 44:21:  img elements must have an alt prop, either with meaningful text, or an empty string for decorative images  jsx-a11y/alt-text

-----------------------------------------------------

혹시나 해서 postman 서버에 들어가보니 respond를 못하는거 같더라구요.

postman 강의때는 잘 불러와졌었는데 

혹시 제가 놓친 부분이 있거나 예상되는 오류가 있으실까요?

postman에서 설정을 따로 해야하는 부분이 있나요?

--------------------------------------------------

import React from "react";
import "./index.css";
import axios from "axios";

function MainPage() {
  const [productssetProducts] = React.useState([]);
  React.useEffect(function () {
    axios
      .get(
        "https://37925d61-5832-477c-9c96-71e279b08d78.mock.pstmn.io/products"
      )
      .then(function (result) {
        const products = result.data.products;
        setProducts(products);
      })
      .catch(function (error) {
        console.error("에러 발생 : "error);
      });
  }, []);

  return (
    <div>
      <div id="header">
        <div id="header-area">
          <img src="images/icons/logo.png" />
        </div>
      </div>
      <div id="body">
        <div id="banner">
          <img src="images/banners/banner1.png" />
        </div>
        <h1>판매되는 상품들</h1>
        <div id="product-list">
          {products.map(function (productindex) {
            return (
              <div className="product-card">
                <div>
                  <img className="product-img" src={product.imageUrl} />
                </div>
                <div className="product-contents">
                  <span className="product-name">{product.name}</span>
                  <span className="product-price">{product.price}</span>
                  <div className="product-seller">
                    <img
                      className="product-avatar"
                      src="images/icons/avatar.png"
                    />
                    <span>{product.seller}</span>
                  </div>
                </div>
              </div>
            );
          })}
        </div>
      </div>
      <div id="footer"></div>
    </div>
  );
}

export default MainPage;

답변 3

0

그랩님의 프로필 이미지
그랩
지식공유자

코드에는 문제가 없고 현재 postman 목서버 설정에 문제가 있는 것 같아요!

먼저 포스트맨 목 서버를 새롭게 만들어보시고 안되시면 해당 화면 캡쳐 부탁드립니다.

0

kkk님의 프로필 이미지
kkk
질문자

잘 올라간건가요?

0

그랩님의 프로필 이미지
그랩
지식공유자

안녕하세요  kacas1 님!

해당 로그는 에러는 아니고 Warning이라 동작과는 무관합니다.

혹시 전체 소스코드를 올려주실 수 있으실까요?

kkk님의 프로필 이미지
kkk

작성한 질문수

질문하기