js:
Page({
data: {
filepath1:'',
detailId:0
},
请求后得到:
that.data.filepath1 = Constant.FILE_BASE_URL+res.data.filepath
console.info(that.data.filepath1);
控制台打印:https://share2.bzcsm.com/uploadFiles/qrCodeFiles/2018/04/29/79.png
wxml:
<image style="width: 100%; height: 350px; background-color: #eeeeee;"src="{{filepath}}" mode="aspectFill" lazy-load="false"></image>
以上展示不出,但是将src换成控制台打印的值即可以展示。
解决了。是我在js里面赋值方式错了。this.data.XXX 赋值才有效
你js写的filepath 但是 你xml上写的filepath1