axiospostform 요청 보내기

2883 단어

axiospostform 요청 보내기


URL과 데이터만 수정하면 됩니다
axios({
  url: '/user',
  method: 'post',
  data: {
    firstName: 'Fred',
    lastName: 'Flintstone'
  },
  transformRequest: [function (data) {
  
    let ret = ''
    for (let it in data) {
      ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
    }
    return ret
  }],
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded'
  }
})

나의 github 나의 블로그 나의 노트

좋은 웹페이지 즐겨찾기