标签:orm 函数地址 路径 title UNC div 功能 code for
微信小程序开之后上传图片到服务器
微信小程序自带的上传图片功能只能允许上传图片到手机本地。但是比如网站后台需要看到图片怎么办呢?
接下来。上传源码
function UploadImage(CallBack) { wx.chooseImage({ success: function (res) { var tempFilePaths = res.tempFilePaths console.log(tempFilePaths) wx.showLoading({ title: ‘正在上传‘ }) wx.uploadFile({ url: UploadImage_ApiUrl, filePath: tempFilePaths[0],//临时路径 name: uploadImagefileName, formData: { CustID: custID }, success: function (res) { var data = res.data console.log(res) var json=JSON.parse(data) wx.hideLoading() CallBack(json.path) } }) } }) }
CallBack:回调函数地址
标签:orm 函数地址 路径 title UNC div 功能 code for
原文地址:https://www.cnblogs.com/yunshangxiaolei/p/9042724.html