使用jquery Ajax实现上传附件功能
Posted xanthedsf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jquery Ajax实现上传附件功能相关的知识,希望对你有一定的参考价值。
用过jquery的Ajax的人肯定都知道,Ajax的默认编码方式是”application/x-www-form-urlencoded“,此编码方式只能编码文本类型的数据,因此Ajax发送请求的时候,会把data序列化成 一个个String类型的键值对,此种传输数据的方式能够满足大部分应用场景,然而当传输的数据里有附件的时候,此序列化机制便是我们的绊脚石。Ajax本身的序列化机制的硬伤归其原因在于在html4的时代,没有FileReader接口,在页面里无法读取File(Blob)文件,用document.getElementById("文件控件的id").value只能拿到文件的name,因此去序列化去编码它也无从谈起(个人观点,有不同意见的欢迎给我留言)。
众所周知,用form提交表单的时候,有附件的时候,只要设置form的enctype="multipart/form-data",便可以上传附件。于是博主想到,若是能用Ajax提交一个form,那上传附件岂不是变的简单,再也不需要使用类似AjaxFileUpload之类的插件来作上传。html5让这一切便的简单。
FormData是html5的接口,使用它一行代码便可以拿到整个form表单对象:
var form = new FormData(document.getElementById("form"));
然后我们拿着这个form对象,去赋给Ajax的data,并且阻止它将参数转成成String类型的键值对,此举需要设置processData属性为false,此属性默认为true;同时设置Ajax的编码方式为false(contentType: false),在form表单里已经设置了编码方式,Ajax的编码机制已经不需要,这样我们就可以用Ajax去提交一个form对象,从而解决表单有附件的问题。需要注意的是,务必将Ajax的提交方式,设置为post,get请求只能携带几kb的数据。若是不设置processData为false,去提交带附件的form同样是提交不上去的,它的序列化机制是硬伤。所以提交的时候,只能不使用它的序列化机制。
一言以蔽之:借Ajax的壳,去提交form。
示例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html> < html > < head > < script src = "js/jquery-1.9.1.min.js" ></ script > < meta charset = "utf-8" /> < title >Ajax提交form</ title > function test(){ var form = new FormData(document.getElementById("form")); $.ajax({ url:"接口地址", type:"post", data:form, cache: false, processData: false, contentType: false, success:function(data){ alert("操作成功!"); }, error:function(e){ alert("网络错误,请重试!!"); } }); } </ script > </ head > < body > < form id = "form" enctype = "multipart/form-data" > < input type = "text" id = "name" name = "name" /> < input type = "text" id = "phone" name = "phone" /> < input type = "text" id = "content" name = "content" /> < input type = "text" id = "price" name = "price" /> < input type = "text" id = "ifPhone" name = "ifPhone" /> < input type = "text" id = "ifCerName" name = "ifCerName" /> < input type = "text" id = "endTime" name = "endTime" /> < input type = "text" id = "type" name = "type" /> < input type = "file" id = "fileAttach" name = "fileAttach" /> < input type = "button" onclick = "test()" value = "上传" /> </ form > </ body > </ html > |
以上是关于使用jquery Ajax实现上传附件功能的主要内容,如果未能解决你的问题,请参考以下文章
利用 jQuery-photoClip插件 实现移动端裁剪功能并以Blob对象上传