场景上下载图片
1/获取网络图片
app.requests.post(app.interface.officesQrcodeSee)
2/然后本地化
wx.getImageInfo({
src: resp.data.url,
success(res){
// console.log(res)
_this.setData({
albumImg:res.path
})
},fail(res){
app.toastMsg('请求失败,请联系客服反馈')
console.log(res)
}
3/显示在界面上
image="{{ albumImg }}"
问题:现在能得到也能下载,就是不显示
显示在image标签上面不应该是src属性?