Populate (1) 썸네일형 리스트형 데이터베이스에 들어있는 모든 상품을 가져오기 import axios from 'axios'; import React, { useEffect } from 'react' function LandingPage() { useEffect(() => { // 원래라면 필터 기능을 위해 axios에 요청할 때 body 객체를 함께 보내주는데 현재 단계에선 모든 // 상품을 갖고오기 때문에 아직까진 필요없다. axios.post('/api/product/products') .then(response => { if(response.data.success){ console.log(response.data) }else { alert('상품들을 갖고오는데 실패') } }) }) return ( LandingPage ) } export default LandingPage.. 이전 1 다음