uniapp 请求后端返回的图片验证码是流文件的格式,转换为前端可显示的方式

uni.request({
url: 'http://192.168.3.110:11032/tobacco/getCaptcha', //  替换成自己的后端接口地址
responseType: 'arraybuffer',  // 将响响应的数据类型修改成 arraybuffer
success: (res) => {
// 用uni.arrayBufferToBase64()方法将 ArrayBuffer 对象转成 Base64 字符串
this.imgVerificationCode = 'data:image/png;base64,' + uni.arrayBufferToBase64(res
.data);
console.log(this.imgVerificationCode)
}
})
},

你可能感兴趣的:(前端,uni-app)