后端返回一个image类型的数据,前端使用img渲染

 <img
   :src="imgUrl"
   style="width: 100px;"
   fit="contain"
   @click="getCodeImg"
 >
 
getCodeImg: function() {
  api.getCodeImg(this.loginData.mobile).then(res => {
    console.log('base', res.data)
    const myBlob = new window.Blob([res.data], { type: 'image/jpeg' })
    this.imgUrl = window.URL.createObjectURL(myBlob)
  }
  )
},

后端返回一个image类型的数据,前端使用img渲染_第1张图片

你可能感兴趣的:(前端,javascript)