springboot---微信小程序上传文件(图片)
发表时间:2020-9-28
发布人:葵宇科技
浏览次数:90
springboot后台
C:\Users\Lenovo\Desktop\各种框架安装包\demo-uploadfile
微信小程序
wx.js
formSubmit:function()
{
wx.chooseImage({
success (res) {
const tempFilePaths = res.tempFilePaths
wx.uploadFile({
url: 'http://localhost:8080/upload', //仅为示例,非真实的接口地址
filePath: tempFilePaths[0],
name: 'file',
formData: {
'user': 'test'
},
success (res){
const data = res.data
//do something
}
})
}
})
},
wx.xml
<form bindsubmit="formSubmit">
<button formType="submit">提交</button>
</form>