Bu, üstbilgiler ve responseType içeren basit bir konfigürasyon örneğidir:
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' veya 'application / json' olabilir ve ayrıca 'application / json; charset = utf-8' olarak da çalışabilir
responseType 'arraybuffer', 'blob', 'document', 'json', 'text', 'stream' olabilir
Bu örnekte this.data, göndermek istediğiniz veridir. Bir değer veya Dizi olabilir. (Bir nesneyi göndermek istiyorsanız, muhtemelen onu seri hale getirmeniz gerekecektir)