- <formid="uploadForm"action="http://localhost:8080/cfJAX_RS/rest/file/upload"method="post"enctype="multipart/form-data">
- <h1>测试通过Rest接口上传文件</h1>
- <p>指定文件名:<inputtype="text"name="filename"/></p>
- <p>上传文件:<inputtype="file"name="file"/></p>
- <p>关键字1:<inputtype="text"name="keyword"/></p>
- <p>关键字2:<inputtype="text"name="keyword"/></p>
- <p>关键字3:<inputtype="text"name="keyword"/></p>
- <inputtype="submit"value="上传"/>
- </form>
- $.ajax({
- url:"http://localhost:8080/STS/rest/user",
- type:"POST",250)"> data:$('#postForm').serialize(),250)"> success:function(data){
- $('#serverResponse').html(data);
- },250)"> error:function(data){
- $('#serverResponse').html(data.status+":"+data.statusText+":"+data.responseText);
- }
- });
如上,通过$('#postForm').serialize()可以对form表单进行序列化,从而将form表单中的所有参数传递到服务端。