点击圆框,图片显示不出来
<view class="display">
<view style=" border-radius: 60%;background-color: beige;width: 100px;height: 100px;">
<image src="{{src}}" bindtap="upload"></image>
</view>
</view>
data: {
scr:''
},
upload(){
var that=this;
wx.chooseImage({
count: 1,
sizeType:["compressed"],
sourceType:['album','camera'],
success(res){
that.setData({scr:res.tempFilePaths[0]})
wx.getImageInfo({
src:res.tempFilePaths[0],
})
},
})
},
你 scr 和src 写错了吧 。data里
that.setData({scr:res.tempFilePaths[0]}) 写错了,是src:res.tempFilePaths[0]