1. postawait axios .post( 'api', // 요청할 URL { "data1": value1, "data2": value2 }, // 전송할 데이터 { withCredentials: true, // 설정: 쿠키 전송 허용 headers: { "Content-Type": "application/json" }, // 설정: 헤더 } ) .then((response) => { console.log(response.data); // 응답 데이터 출력 return response.data; }) .ca..