form表单里有文件,比如图像文件、普通文本文件、音频视频文件,该怎么办?
解决方案总的有两种:
本文主要介绍第二种伪提交方案,formData使用教程已在下方列出。
https://developer.mozilla.org/zh-CN/docs/Web/API/FormData/Using_FormData_Objects
1、本文开发环境:
1. spring boot
2. mysql
3. java
4. thymeleaf模板引擎
5. layui库
2、layui使用教程
注:layui有一个upload模块,特别好用,本文就是使用upload模块完成了目标。官方文档对于upload模块的介绍很详细,所以我建议你好好研究研究官方文档,再看我的实例不迟!
layui模块的加载
http://www.layui.com/doc/
图片/文件上传 - layui.upload
http://www.layui.com/doc/modules/upload.html#choose
3、前后台代码
前端页面代码:
让我们看看下面这段涉及文件上传的代码。div里包含有一个button,一个隐藏的input(用于保存文件url),还有专门预览的div。
class="layui-input-block">
//上传按钮
//隐藏的input
type="hidden" id="img_url" name="img" value=""/>
//预览区域
class="layui-upload-list">
class="layui-upload-img" width="100px" height="80px" id="demo1"/>
"demoText">
好了,现在我们继续,上js代码。在这段js代码里,最核心的事情只有三件
<script type="text/javascript" th:inline="javascript">
layui.use('upload', function(){
var upload = layui.upload
, $ = layui.jquery;
var uploadInst = upload.render({
elem: '#upload1' //绑定元素
,url: /*[[@{/upload/img}]]*/'' //上传接口
,before: function(obj){
//预读本地文件示例,不支持ie8
obj.preview(function(index, file, result){
$('#demo1').attr('src', result); //图片链接(base64)
});
}
,done: function(res){
//如果上传失败
if(res.code > 0){
return layer.msg('上传失败');
}
//上传成功
alert("上传成功"+res.url);
document.getElementById("img_url").value = res.url;
}
,error: function(){
//演示失败状态,并实现重传
var demoText = $('#demoText');
demoText.html('上传失败 重试');
demoText.find('.demo-reload').on('click', function(){
uploadInst.upload();
});
}
});
});
script>
文件上传Controller
@Controller
@MultipartConfig
public class FileUploadController {
@RequestMapping(value = "/upload/img" , method = RequestMethod.POST)
@ResponseBody
public Map upload(HttpServletRequest servletRequest,
@RequestParam("file") MultipartFile file
) throws IOException {
//如果文件内容不为空,则写入上传路径
if (!file.isEmpty()) {
//上传文件路径
String path = "/home/jian/Desktop/qingyunV2/qingyunv2/src/main/resources/static/images";
System.out.println("文件名称"+file.getOriginalFilename());
//上传文件名
String filename = file.getOriginalFilename();
File filepath = new File(path, filename);
//判断路径是否存在,没有就创建一个
if (!filepath.getParentFile().exists()) {
filepath.getParentFile().mkdirs();
}
//将上传文件保存到一个目标文档中
File file1 = new File(path + File.separator + filename);
file.transferTo(file1);
Map res = new HashMap<>();
//返回的是一个url对象
res.put("url", file1);
return res;
} else {
return Result.failure();
}
}
}
至此文件上传任务已经完成了,现在表单中隐藏的input已经保存了文件的url,那么,接下来就是简单的纯文本form提交。这个不难,用ajax提交行,正常提交也可以,随意。下面,我仅仅贴出代码。
ajax提交纯文本form
--要给当前脚本加上th:inline="javascript",tymeleaf才能生效。self.location = /*[[@{/sys_seller/find}]]*/'';-->
保存信息Controller
@RequestMapping(value = "/sys_seller/add")
@ResponseBody
public Result add(@RequestParam("name") String name ,
@RequestParam("managername") String managername,
@RequestParam("phone") String phone,
@RequestParam("tel") String tel,
@RequestParam("remark") String remark,
@RequestParam("sellarrange") String sellarrange,
@RequestParam("province") String province,
@RequestParam("city") String city,
@RequestParam("address") String address,
@RequestParam("img") String img
) throws IOException
{
Sellers seller = new Sellers();
seller.setName(name);
seller.setManagerName(managername);
seller.setPhone(phone);
seller.setTel(tel);
seller.setRemark(remark);
seller.setSellArrange(sellarrange);
seller.setProvince(province);
seller.setCity(city);
seller.setAddress(address);
seller.setImgurl(img);
System.out.println(seller.toString());
qingYunService.saveSeller(seller);
return Result.success();
}
本文只做为一个引子,过多的东西我也说不明白,希望这些对你有所帮助。如果你想搞清整个提交细节的话,你需要了解@ResponseBody
、Ajax原理
等基础知识。你需要打好基础,才会有万丈高楼平地起!