소개
게시글
질문&답변
2021.02.17
use effect 부분에서 에러가나는 건지요...
import React ,{useEffect, useState} from 'react' import axios from 'axios'; import ProductImage from './Sections/ProductImage'; import ProductInfo from './Sections/ProductInfo'; import {Row, Col} from 'antd'; import { useDispatch } from 'react-redux'; import { addToCart } from '../../../_actions/user_actions'; function DetailProductPage(props) { const productId = props.match.params.productId const dispatch = useDispatch const [Product, setProduct] = useState({}) useEffect(() => { axios.get(`/api/product/products_by_id?id=${productId}&type=single`) .then(response =>{ if(response.data.success){ setProduct(response.data.product[0]) }else { alert('상세 정보 가져오기를 실패했습니다.') } }) },[] ) const addToCartHandler = (productId) => { dispatch(addToCart(productId)) } return ( div style={{widht: '100%', padding : '3rem 4rem'}}> div style = {{display : 'flex', justifyContent:'center'}}> h1>{Product.title}h1> div> br /> Row gutter={[16,16]}> Col lg={12} sm= {24}> {/* Product image */} ProductImage addToCart={addToCartHandler} detail={Product} /> Col> Col lg={12} sm= {24}> {/* Product Info */} ProductInfo detail={Product} /> Col> Row> div> ) } export default DetailProductPage github에 올려주신 자료 보고 수정했는데 똑같은 에러가 나네요 ㅠ
- 0
- 3
- 361
질문&답변
2021.02.17
use effect 부분에서 에러가나는 건지요...
리액트 버전은 16.8.6 입니다 ㅠ
- 0
- 3
- 361
질문&답변
2021.02.06
로그인,회원가입 버튼을 누르면 에러가 뜹니다ㅠ
저도 똑같은 에러가 나네요 ㅠㅠ
- 0
- 1
- 131