比较简单,直接上代码
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
网友评论