点击头像框上传图片不显示

问题遇到的现象和发生背景

点击圆框,图片显示不出来

用代码块功能插入代码,请勿粘贴截图
我的解答思路和尝试过的方法
<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],
      })
      },


    })
  },

我想要达到的结果

img

你 scr 和src 写错了吧 。data里

that.setData({scr:res.tempFilePaths[0]}) 写错了,是src:res.tempFilePaths[0]

img