【Axios】发送 binary 数据

457 阅读1分钟
var data = '<file contents here>';

var config = {
   method: 'get',
   url: 'url',
   headers: { 
      'Content-Type': 'text/plain'
   },
   data : data
};

axios(config)
.then(function (response) {
   console.log(JSON.stringify(response.data));
})
.catch(function (error) {
   console.log(error);
});