微信小程序wx.uploadfile, 利用PHP接口把本地圖片轉(zhuǎn)化為base64位。
創(chuàng)新互聯(lián)2013年至今,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元隆子做網(wǎng)站,已為上家服務(wù),為隆子各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18980820575
網(wǎng)上到處都是粘貼復(fù)制的wx.uploadfile的解決方案, 但目前還沒有具體的代碼:
特意呈現(xiàn)出來給需要的伙伴們:
代碼:
case 'imgBufferToBase64': $data=''; file_put_contents("1.txt",var_export($_FILES,true)."\r\n",FILE_APPEND); if(!empty($_FILES['upload']['tmp_name'])){ if(empty($_FILES['upload']['type'])){ IO::Debug('文件類型不合法'); } if(!in_array($_FILES['upload']['type'],array( 'image/gif', 'image/pjpeg', 'image/jpeg', 'image/x-png', 'image/png', 'image/bmp' ))){ IO::Debug($_FILES['upload']['type'].'文件類型不合法'); } $data=file_get_contents($_FILES['upload']['tmp_name']); file_put_contents("1.txt",var_export($data,true)."\r\n",FILE_APPEND); IO::Debug('解析成功',true,$data); } 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) {
var $data = JSON.parse(res.data);
if (typeof ($data.data) != "undefined" && $data.code){
var imgBase64 = "data:image/jpeg;base64," + $data.data;
}
}
})
總結(jié)
以上所述是小編給大家介紹的微信小程序wx.uploadfile 本地文件轉(zhuǎn)base64的實(shí)現(xiàn)代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)創(chuàng)新互聯(lián)網(wǎng)站的支持!