WeChatウィジェットの画像をBase 64ソリューションに引っ張ります.
1330 ワード
どのようにして写真をbase 64に保存して表示するかをまだ探していますか?ここにあります.見てください.
使い方
jsファイル
使い方
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;' />