动态展示接口返回的图片
接口返回数据
this.qrcode_img_base64= response.data.qrcode_img_base64;
页面展示
<img style="width:300px;height:300px" :src="'data:image/jpg;base64'+ ',' + qrcode_img_base64" />
忘记字符串拼接
动态展示接口返回的图片
接口返回数据
this.qrcode_img_base64= response.data.qrcode_img_base64;
页面展示
<img style="width:300px;height:300px" :src="'data:image/jpg;base64'+ ',' + qrcode_img_base64" />
忘记字符串拼接