Day 15, 16, 17, 18 : CORS맨이 쓰러지지 않아, 브라우저에서 CSRF 토큰이 안 날라가면 봐야한다 ㄹㅇ
{ try { const response = await fetch(endPoint + "/countries", { method: "POST", credentials: "include", // 이 부분을 추가해야 쿠키를 담아서 보내게 된다! headers: { "Content-Type": "application/json", "CSRF-Token": localStorage.getItem("csrfToken"), }, body: JSON.stringify({ toCountry: toCountry, }), }) const data = await response.json() } catch (err) { console.error(`Error fetching country data: ${err}`) } } 백엔드 a..
2023.06.20