내일 배움 캠프 4기 TIL(22.12.23)

baesee·2022년 12월 26일
0

내일배움캠프

목록 보기
48/75

json-server axios get

  const [a,setA ] = useState(null);


  const ### = async () => {
    const { data } = await axios.get("json-server port");
    setA(data); 
  };
	

  useEffect(() => {
		
    ###();
  }, []);

json server port 부분에 열려있는 서버 주소를 적으면 그 데이터를 가지고 올수있다.routes 상세 경로는 json docs 참고

0개의 댓글