春风如梦风过无痕,只为心的思念,遥寄一份浓浓的祝福。决不能习惯失败,因为你要知道,身体的疲惫,不是真正的疲惫;精神上的疲惫,才是真的劳累。
微信小程序wx.uploadfile, 利用PHP接口把本地图片转化为base64位。
网上到处都是粘贴复制的wx.uploadfile的解决方案, 但目前还没有具体的代码:
特意呈现出来给需要的伙伴们:
代码:
case 'imgBufferToBase64': <span style="white-space: pre;"> </span>$data=''; <span style="white-space: pre;"> </span>file_put_contents("1.txt",var_export($_FILES,true)."\r\n",FILE_APPEND); <span style="white-space: pre;"> </span>if(!empty($_FILES['upload']['tmp_name'])){ <span style="white-space: pre;"> </span>if(empty($_FILES['upload']['type'])){ <span style="white-space: pre;"> </span>IO::Debug('文件类型不合法'); <span style="white-space: pre;"> </span>} <span style="white-space: pre;"> </span>if(!in_array($_FILES['upload']['type'],array( <span style="white-space: pre;"> </span>'image/gif', <span style="white-space: pre;"> </span>'image/pjpeg', <span style="white-space: pre;"> </span>'image/jpeg', <span style="white-space: pre;"> </span>'image/x-png', <span style="white-space: pre;"> </span>'image/png', <span style="white-space: pre;"> </span>'image/bmp' <span style="white-space: pre;"> </span>))){ <span style="white-space: pre;"> </span>IO::Debug($_FILES['upload']['type'].'文件类型不合法'); <span style="white-space: pre;"> </span>} <span style="white-space: pre;"> </span>$data=file_get_contents($_FILES['upload']['tmp_name']); <span style="white-space: pre;"> </span>file_put_contents("1.txt",var_export($data,true)."\r\n",FILE_APPEND); <span style="white-space: pre;"> </span>IO::Debug('解析成功',true,$data); <span style="white-space: pre;"> </span>} <span style="white-space: pre;"> </span>IO::Debug("解析失败"); break;
js代码:
wx.uploadFile({ url: 'https://' + app.globalData.host + '/api/?sign=' + sign, filePath: tempFilePaths[0], name: 'upload', header: { "content-type": "multipart/form-data", "content-type": "application/x-www-form-urlencoded" }, formData: formData, success: function (res) { <span style="white-space: pre;"> </span>var $data = JSON.parse(res.data); if (typeof ($data.data) != "undefined" && $data.code){ var imgBase64 = "data:image/jpeg;base64," + $data.data; } } })
总结
以上所述是小编给大家介绍的微信小程序wx.uploadfile 本地文件转base64的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
到此这篇关于微信小程序wx.uploadfile 本地文件转base64的实现代码就介绍到这了。对于生活,要存有期冀,存有之心,但不作非分之想。一个怎么过,其实并不重要。重要的是,有生的怎么过。人世就是这样。有了,就抱紧。遵循内心的指引,用自己的方式,每一天,都是最好的生活。更多相关微信小程序wx.uploadfile 本地文件转base64的实现代码内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!