代码如下(示例):
<view class="code" v-on:click="getCode">
<image :src="'data:image/png;base64,'+codeUrl"></image>
</view>
代码如下(示例):
data() {
return {
codeUrl: "",
},
}
onLoad(option) {
this.getCode()
}
methods: {
getCode() {
let _that=this
my.request({
url: 'https://xxxx.com',
method:"GET",
responseType: 'blob',//返回数据类型
dataType: 'base64',
success: function(res) {
_that.codeUrl=res.data
},
fail: function(res) {
uni.showToast({
title: "获取验证码失败..",
})
},
})
},
}
上文解决完发现在ios端图片不显示!解决这个问题请点击–>
提示:如有不正,望指出!