다음은 헤더와 responseType이있는 간단한 구성 예입니다.
var config = {
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
responseType: 'blob'
};
axios.post('http://YOUR_URL', this.data, config)
.then((response) => {
console.log(response.data);
});
Content-Type은 'application / x-www-form-urlencoded'또는 'application / json'일 수 있으며 'application / json; charset = utf-8'도 작동 할 수 있습니다
responseType은 'arraybuffer', 'blob', 'document', 'json', 'text', 'stream'일 수 있습니다.
이 예에서 this.data는 보내려는 데이터입니다. 값 또는 배열 일 수 있습니다. (개체를 보내려면 직렬화해야 할 것입니다)