목록2024/07/05 (1)
The Debugging Chronicles : "코드의 미학"
React와 express로 회원 탈퇴 구현하기
먼저 에러 났을 때 코드를 살펴 보자>>>프론트- session.js const deleteUserApi = async () => { try { const token = localStorage.getItem('token'); // 또는 쿠키에서 가져오기 if (!token) { throw new Error('No authentication token found'); } const response = await fetch('http://localhost:8000/user/delete', { method: 'DELETE', h..
오류 원인 분석 해결 방안
2024. 7. 5. 08:43