24.01.18) TIL
2024-01-18 23:42:43
최종 프로젝트 프론트 작업 - 게시글 작성 코드를 만들었는데, 포스트맨은 같은 url임에도 불구하고 브라우저에서는 게시글 작성이 되지 않는 문제가 있었다. const requestData = { postTitle: postTitle, postContent: postContent, }; try { const accessToken = localStorage.getItem('accessToken'); const refreshToken = localStorage.getItem('refreshToken'); if (!accessToken) { console.error('액세스 토큰이 없습니다.'); alert('로그인하고 이용해주세요'); navigate("/"); return; } const formData =..