本文主要使用jersey1.x,结合html5的FormData对象来进行多文件提交示例讲解
FormData对象是html5的一个对象,目前的一些主流的浏览器都已经兼容。IE8及以下是不支持FormData的。FormData还支持困扰众多开发者已久的ajax的上传文件,以前我们上传文件,需要写一个表单直接刷新提交,但是这里不需要了。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
function test(){
var form = new FormData(document.getElementById("form1"));
$.ajax({
url:"http://192.168.2.8:8066/file/multiFiles/",
type:"post",
data:form,
processData:false,
contentType:false,
success:function(data){
alert("pass");
},
error:function(e){
alert("错误!!");
}
});
}
</script>
</head>
<body>
<form id