设置{responseType:'arraybuffer'}
axios.post(apiUrl, formdata, {responseType:'arraybuffer'}).then().catch();
axios 文档对responseType 的说明
`responseType` 表示服务器响应的数据类型,可以是 'arraybuffer', 'blob', 'document', 'json', 'text', 'stream'
默认的 responseType: 'json',
网友评论