点击图片 jquery ajax上传文件
<form id="form" action="" method="post"> <input name="image" id="file" type="file" style="display:none" /> <!-- 头像 --> <label for="file" class="img1"> <div class="avator"> <img src="./img/default_home.png" /> </div> </label> </form> |
var that=$("#form-user-add"); //获取表单DOM var formData = new FormData(that[0]); $.ajax({ type: 'POST', url: "{:url('User/add')}", // ajax请求地址 dataType: 'json', data:formData, cache: false, processData: false, contentType: false, success: function(data){ }, error:function(data) { console.log(data.msg); } }); |
cache
类型:Boolean
默认值: true,dataType 为 script 和 jsonp 时默认为 false。设置为 false 将不缓存此页面。
jQuery 1.2 新功能。
processData
类型:Boolean
默认值: true。默认情况下,通过data选项传递进来的数据,如果是一个对象(技术上讲只要不是字符串),都会处理转化成一个查询字符串,以配合默认内容类型 “application/x-www-form-urlencoded”。如果要发送 DOM 树信息或其它不希望转换的信息,请设置为 false。
contentType
类型:String
默认值: “application/x-www-form-urlencoded”。发送信息至服务器时内容编码类型。
默认值适合大多数情况。如果你明确地传递了一个 content-type 给 $.ajax() 那么它必定会发送给服务器(即使没有数据要发送),这里设置为false也可以上传成功.