choigirang / why-chat

아왜진 커뮤니티 미니 프로젝트
https://fe.why-chat.site
0 stars 0 forks source link

게시글 수정 페이지 데이터 저장 #27

Open choigirang opened 10 months ago

choigirang commented 6 months ago
  // 게시글 받아오기
  useEffect(() => {
    if (router.query.id !== undefined) {
      api.get(`/post/${router.query.id}`).then(res => {
        setData(res.data);
      });
    }
  }, [router.query.id]);

edit page 에서 query로 post data 설정 title, content, category에 설정된 데이터 반영