小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如何将图片转为base64,然后进行 request请求
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
https://github.com/zh8637688/wx-cardscanner
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.chooseImage({
count:1,
success: function(res) {
console.log(res.tempFiles[0].path);
wx.request({
url: res.tempFiles[0].path,
method:'get',
responseType:'arraybuffer',
success:function(data){
var base64=wx.arrayBufferToBase64(data.data);
base64 ="data:image/png;base64,"+base64;
base64=encodeURIComponent(base64);
console.log(base64);
url: 'https://www.mydomain.com/Handler/Base64ImageHandler.ashx',
method:'post',
header: { 'content-type':'application/x-www-form-urlencoded'},
data: "imgurl="+base64,
success:function(db){
console.log(db.data);
}
})
这样的方法 是可以得出图片转换为base64 可以在网上的在线工具显示出来,,,目前我测试的只能在微信web开发工具上有效,但是在手机上就没有效果了 直接抛出异常了,,,
您可以将图片文件以 base64 形式读出,再进行使用。
怎么将图片文件以 base64 形式读出,能给个示例吗
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
https://github.com/zh8637688/wx-cardscanner
wx.chooseImage({
count:1,
success: function(res) {
console.log(res.tempFiles[0].path);
wx.request({
url: res.tempFiles[0].path,
method:'get',
responseType:'arraybuffer',
success:function(data){
var base64=wx.arrayBufferToBase64(data.data);
base64 ="data:image/png;base64,"+base64;
base64=encodeURIComponent(base64);
console.log(base64);
wx.request({
url: 'https://www.mydomain.com/Handler/Base64ImageHandler.ashx',
method:'post',
header: { 'content-type':'application/x-www-form-urlencoded'},
data: "imgurl="+base64,
success:function(db){
console.log(db.data);
}
})
}
})
}
})
这样的方法 是可以得出图片转换为base64 可以在网上的在线工具显示出来,,,目前我测试的只能在微信web开发工具上有效,但是在手机上就没有效果了 直接抛出异常了,,,
您可以将图片文件以 base64 形式读出,再进行使用。
怎么将图片文件以 base64 形式读出,能给个示例吗