美文网首页
微信小程序-图片转base64

微信小程序-图片转base64

作者: 名字随便取的哈 | 来源:发表于2019-06-23 14:53 被阅读0次

比较简单,直接上代码

wx.chooseImage({
     success: function(res) {
       console.log(res.tempFilePaths[0])
//关键是下面这几行代码 ,传给接口一个虚拟路径,重点是设置encoding为base64
         wx.getFileSystemManager().readFile({
         filePath: res.tempFilePaths[0],
         encoding:"base64",
         success: function (data){
           console.log(data)//返回base64编码结果,但是图片的话没有data:image/png
         }
       })
//
     },

API地址:https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFile.html

相关文章

网友评论

      本文标题:微信小程序-图片转base64

      本文链接:https://www.haomeiwen.com/subject/imuiqctx.html