小程序
小游戏
企业微信
微信支付
扫描小程序码分享
不要说wx.arrayBufferToBase64 这个api,是web-view里面
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
getBase64("https://z649319834.github.io/Learn_Example/video_track/webvtt.jpg") function getBase64(imgUrl) { window.URL = window.URL || window.webkitURL; var xhr = new XMLHttpRequest(); xhr.open("get", imgUrl, true); // 至关重要 xhr.responseType = "blob"; xhr.onload = function () { if (this.status == 200) { //得到一个blob对象 var blob = this.response; console.log("blob", blob) // 至关重要 let oFileReader = new FileReader(); oFileReader.onloadend = function (e) { let base64 = e.target.result; console.log("方式一》》》》》》》》》", base64) }; oFileReader.readAsDataURL(blob); //====为了在页面显示图片,可以删除==== var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放 }; let src = window.URL.createObjectURL(blob); img.src = src document.getElementById("container1").appendChild(img); //====为了在页面显示图片,可以删除==== } } xhr.send(); }
参考这个代码,通过接口拿到图片的流后,使用FileReader
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
小程序生成的二维码是怎么传到web-view里的?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
getBase64("https://z649319834.github.io/Learn_Example/video_track/webvtt.jpg") function getBase64(imgUrl) { window.URL = window.URL || window.webkitURL; var xhr = new XMLHttpRequest(); xhr.open("get", imgUrl, true); // 至关重要 xhr.responseType = "blob"; xhr.onload = function () { if (this.status == 200) { //得到一个blob对象 var blob = this.response; console.log("blob", blob) // 至关重要 let oFileReader = new FileReader(); oFileReader.onloadend = function (e) { let base64 = e.target.result; console.log("方式一》》》》》》》》》", base64) }; oFileReader.readAsDataURL(blob); //====为了在页面显示图片,可以删除==== var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放 }; let src = window.URL.createObjectURL(blob); img.src = src document.getElementById("container1").appendChild(img); //====为了在页面显示图片,可以删除==== } } xhr.send(); }
参考这个代码,通过接口拿到图片的流后,使用FileReader
小程序生成的二维码是怎么传到web-view里的?