⛵ 항해99/TIL · WIL ✏️

[TIL] 2023.09.25 - 폼데이터(formData)로 사진 보내기

hhhhy 2023. 9. 30. 22:49

 폼데이터(formData)로 사진 보내기 

// 사진 업로드는 폼데이터로!!!!!!!!!
const formData = new FormData();
formData.append("title", uploadTitle);
formData.append("content", uploadContent);
formData.append("url", uploadUrl);
formData.append("image", uploadImage);

// 서버로 폼데이터 보냄
const response = await axios.post(`${serverUrl}/api/campaign`, formData, {
	headers: {
		Authorization: `Bearer ${token}`, // 로그인 여부 확인(토큰을 헤더에 추가)
		"Content-Type": "multipart/form-data", // 필수: FormData를 보낼 때 content type 설정
	},
});