728x90
Using multipart/form-data format
FormData
To send the data as a multipart/formdata you need to pass a formData instance as a payload. Setting the Content-Type header is not required as Axios guesses it based on the payload type.
const formData = new FormData();
formData.append('foo', 'bar');
axios.post('https://httpbin.org/post', formData);
axios를 이용해서 헤더에 이진데이터를 이용할때는 멀티파트라는 개념이 있다. 이것을 이용해서 보내야지 이진데이터를 보낼 수 있다.
728x90
'웹 개념' 카테고리의 다른 글
[Web] 기술 인터뷰 회고 - 답을 제대로 못했던거 정리 - 버블링, 클린업 코드, useRef vs useState, 비동기 코드를 자바스크립트에서 쓸 수 있는 이유 (0) | 2023.07.24 |
---|---|
[web] spa 만들기 저장용 (0) | 2023.06.28 |
[web] ajax , axios 차이 (0) | 2023.06.09 |
[Web]아이폰 datePicker 확대되는 현상 해결 코드 (0) | 2023.05.09 |
[Vue3] emits 받는 방법 (0) | 2022.12.22 |