概述
小程序图片上传,在服务器上接收小程序上传的图片
前面一篇介绍了本地搭建小程序测试服务器,但是有一定局限性:不能上传图片。因为小程序上传图片需要验证公用ssl证书,使用一些不正规的免费证书不能完成上传。所以我在阿里云上申请了一个用来测试,方法:linux服务器配置https 。当完成这些准备工作后,就可以开始文件上传功能的开发了。
小程序上传文件及其他网络访问接口和普通网络请求是相同的,如果在请求过程中数据传输失败或者有其他错误,处理方式和普通网络请求处理方式相同。
小程序由微信提供接口,开发需按照一定规范,没有那么灵活,以下是文件上传:
chooseWxImage: function (type) {
var that = this;
wx.chooseImage({
sizeType: ['original', 'compressed'],
sourceType: [type],
success: function (res) {
that.setData({
tempFilePaths: res.tempFilePaths,
}),
that.uploadImage(res.tempFilePaths[0])
}
})
},
uploadImage: function (type) {
wx.uploadFile({
url: 'https://api.**域名**.com/upload',
method: "POST",
filePath: type,
name: 'wximage',
header: {
'content-type': 'multipart/form-data'
},
data: {
// 直接使用file,接口会按上传文件处理。写成带引号形式“file”是错误的
file: type.data
},
success: function (res) {
//do something
},
fail: function (res) {
//do something
}
})
}
接收工程是使用的springboot框架,以下是服务器接收:
@ResponseBody
@RequestMapping(value = "/upload", method = RequestMethod.POST)
public String upload(
HttpServletRequest request,
// 此处file和请求参数中的file对应,content-type按照 multipart/form-data格式,否则不对应
@RequestParam("file") MultipartFile file) {
String str;
File saveFile = new File(request.getSession().getServletContext().getRealPath("/upload/") + "test.jpg");
if (!saveFile.getParentFile().exists()) {
saveFile.getParentFile().mkdirs();
}
// 文件保存路径
System.out.println(saveFile.getParentFile().toString());
try {
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(saveFile));
out.write(file.getBytes());
out.flush();
out.close();
str = "上传成功";
} catch (FileNotFoundException e) {
e.printStackTrace();
str = "上传失败," + e.getMessage();
} catch (IOException e) {
e.printStackTrace();
str = "上传失败," + e.getMessage();
}
return str;
}
如果调试过程中需要查看请求头及请求体信息,直接使用getHeader()方法可能出现错误:*** has already been called for this request。解决方法可参考博客:https://blog.csdn.net/noseew/article/details/79179892
参考资料:
https://blog.csdn.net/xxkalychen/article/details/77842638
https://www.cnblogs.com/ityouknow/p/8298344.html
最后
以上就是发嗲战斗机为你收集整理的(小程序篇:二)服务器接收小程序图片如果调试过程中需要查看请求头及请求体信息,直接使用getHeader()方法可能出现错误:*** has already been called for this request。解决方法可参考博客:https://blog.csdn.net/noseew/article/details/79179892的全部内容,希望文章能够帮你解决(小程序篇:二)服务器接收小程序图片如果调试过程中需要查看请求头及请求体信息,直接使用getHeader()方法可能出现错误:*** has already been called for this request。解决方法可参考博客:https://blog.csdn.net/noseew/article/details/79179892所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复