接口返回一张图片处理 axios.get('/test', { params, responseType: 'arraybuffer' }).then(res => { const url = `data:image/png;base64,${btoa(new Uint8Array(res.data).reduce((data, byte) => data + String.fromCharCode(byte), ''))}` /** * btoa()是JavaScript的全局函数 * 用来将二进制字符串 ,转换成 Base64编码 的字符串的 */ })