這篇文章主要介紹了微信小程式wx.uploadfile 本機檔案轉base64的實作方法,文中透過程式碼講解給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下
微信小程式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; } } })
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
微信小程式es6-promise. js封裝請求與處理非同步程序
#
以上是微信小程式wx.uploadfile 本機檔案轉base64的實作程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!