Axios 设置返回数据编码格式指南
可以使用 Axios 的 responseType 属性设置返回数据的编码格式。常见的编码格式包括:
- 'json':返回 JSON 格式的数据。
- 'text':返回文本格式的数据。
- 'blob':返回二进制格式的数据。
- 'arraybuffer':返回数组格式的数据。
例如,设置返回数据的编码格式为 JSON:
axios({
url: 'http://example.com',
method: 'get',
responseType: 'json'
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
可以根据需要选择合适的编码格式,以便正确解析返回的数据。
原文地址: https://www.cveoy.top/t/topic/mmaf 著作权归作者所有。请勿转载和采集!