Axios Header 설정

공부는 혼자하는 거·2021년 8월 21일
0

React Tip

목록 보기
17/24
axios.post('url', {"body":data}, {
    headers: {
    'Content-Type': 'application/json'
    }
  }
)
export const imgUpload = (data) => client.post('post/2/thumbnail', JSON.stringify(data), { headers });

const headers = {
  post: {
    'Content-Type': '',
  },
  data: 'data',
  encType : "multipart/form-data", //필수 아님, 파일을 넣을거면 필수(e)
  dataType: "json",
  processData: false,

};

https://gaemi606.tistory.com/entry/Spring-Boot-multipartform-data-파일-업로드-React-Axios-REST-API?category=745027

profile
시간대비효율

0개의 댓글