微信小程序-图片转base64

2019-06-23  本文已影响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

上一篇 下一篇

猜你喜欢

热点阅读