微信小程序图片地扯转base64解决方案

你还在找在小程序成如何将图片转base64存储起来并显示嘛,在这里呢,来瞧瞧。

9028759-0554813aedeb2c50.jpeg
wechat

使用方法

js文件

let $this = this;
request({
      url:'https://www.dounine.com/hello.jpg',
      method:'GET',
      responseType: 'arraybuffer',
      success:function(res){
        let base64 = wx.arrayBufferToBase64(res);
        $this.data.userImageBase64 = 'data:image/jpg;base64,' + base64;;
      }
});

wxml文件

<image src='{{userImageBase64}}' style='width:90rpx;height:90rpx;' />

猜你喜欢

转载自blog.csdn.net/weixin_34242658/article/details/90840070