XMLHttpRequest Level 2标准(仍然是工作草案)定义了FormData
接口。此接口允许将File
对象附加到XHR请求(Ajax请求)。
顺便说一下,这是一个新功能 - 过去使用了“隐藏iframe-trick”(在my other question中阅读)。
这是它的工作原理(例子):
var xhr = new XMLHttpRequest(),
fd = new FormData();
fd.append( 'file', input.files[0] );
xhr.open( 'POST', 'http://example.com/script.php', true );
xhr.onreadystatechange = handler;
xhr.send( fd );
其中input
是<input type="file">
字段,handler
是Ajax请求的成功处理程序。
这在所有浏览器中都很漂亮(再次,IE除外)。
现在,我想使这个功能与jQuery一起使用。我试过这个:
var fd = new FormData();
fd.append( 'file', input.files[0] );
$.post( 'http://example.com/script.php', fd, handler );
不幸的是,这不起作用(抛出“非法调用”错误 - screenshot is here)。我假设jQuery需要一个表示form-field-names / values的简单键值对象,而我传入的FormData
实例显然是不兼容的。
现在,由于可以将FormData
实例传递给xhr.send()
,我希望它也可以使它与jQuery一起使用。
更新
我在jQuery的Bug Tracker上创建了一个“功能票”。就在这里:http://bugs.jquery.com/ticket/9995
我被建议使用“Ajax prefilter”......
更新
首先,让我演示一个演示我想要实现的行为的演示。
HTML:
<form>
<input type="file" id="file" name="file">
<input type="submit">
</form>
JavaScript的:
$( 'form' ).submit(function ( e ) {
var data, xhr;
data = new FormData();
data.append( 'file', $( '#file' )[0].files[0] );
xhr = new XMLHttpRequest();
xhr.open( 'POST', 'http://hacheck.tel.fer.hr/xml.pl', true );
xhr.onreadystatechange = function ( response ) {};
xhr.send( data );
e.preventDefault();
});
以上代码会产生此HTTP请求:
这就是我需要的 - 我想要“multipart / form-data”内容类型!
建议的解决方案是这样的:
$( 'form' ).submit(function ( e ) {
var data;
data = new FormData();
data.append( 'file', $( '#file' )[0].files[0] );
$.ajax({
url: 'http://hacheck.tel.fer.hr/xml.pl',
data: data,
processData: false,
type: 'POST',
success: function ( data ) {
alert( data );
}
});
e.preventDefault();
});
然而,这导致:
如您所见,内容类型错误......
答案 0 :(得分:790)
我相信你可以这样做:
var fd = new FormData();
fd.append( 'file', input.files[0] );
$.ajax({
url: 'http://example.com/script.php',
data: fd,
processData: false,
contentType: false,
type: 'POST',
success: function(data){
alert(data);
}
});
将processData
设置为false可以防止jQuery自动将数据转换为查询字符串。有关详细信息,请参阅the docs。
将contentType
设置为false是必要的,否则jQuery will set it incorrectly。
答案 1 :(得分:27)
有一些尚未提及的技术可供您使用。首先在ajax params中设置contentType属性。
以pradeek为例:
$('form').submit(function (e) {
var data;
data = new FormData();
data.append('file', $('#file')[0].files[0]);
$.ajax({
url: 'http://hacheck.tel.fer.hr/xml.pl',
data: data,
processData: false,
type: 'POST',
// This will override the content type header,
// regardless of whether content is actually sent.
// Defaults to 'application/x-www-form-urlencoded'
contentType: 'multipart/form-data',
//Before 1.5.1 you had to do this:
beforeSend: function (x) {
if (x && x.overrideMimeType) {
x.overrideMimeType("multipart/form-data");
}
},
// Now you should be able to do this:
mimeType: 'multipart/form-data', //Property added in 1.5.1
success: function (data) {
alert(data);
}
});
e.preventDefault();
});
在某些情况下,当迫使jQuery ajax执行非预期的事情时,beforeSend
事件是一个很好的地方。有一段时间人们使用beforeSend
覆盖mimeType,然后再将其添加到1.5.1中的jQuery中。您应该能够在发送前事件中修改jqXHR对象上的任何内容。
答案 2 :(得分:16)
您可以使用以下代码
在ajax请求中发送FormData对象$("form#formElement").submit(function(){
var formData = new FormData($(this)[0]);
});
这与接受的答案非常相似,但是问题主题的实际答案。这将自动在FormData中提交表单元素,您无需手动将数据附加到FormData变量。
ajax方法如下所示,
$("form#formElement").submit(function(){
var formData = new FormData($(this)[0]);
//append some non-form data also
formData.append('other_data',$("#someInputData").val());
$.ajax({
type: "POST",
url: postDataUrl,
data: formData,
processData: false,
contentType: false,
dataType: "json",
success: function(data, textStatus, jqXHR) {
//process data
},
error: function(data, textStatus, jqXHR) {
//process error msg
},
});
您也可以手动将FormData对象中的表单元素作为参数传递给
var formElem = $("#formId");
var formdata = new FormData(form[0]);
希望它有所帮助。 ;)
答案 3 :(得分:5)
您可以使用$ .ajax beforeSend
事件来操纵标题。
...
beforeSend: function(xhr) {
xhr.setRequestHeader('Content-Type', 'multipart/form-data');
}
...
有关其他信息,请参阅此链接:http://msdn.microsoft.com/en-us/library/ms536752(v=vs.85).aspx
答案 4 :(得分:5)
我这样做,它对我有用,我希望这会有所帮助:)。
<div id="data">
<form>
<input type="file" name="userfile" id="userfile" size="20" />
<br /><br />
<input type="button" id="upload" value="upload" />
</form>
</div>
<script>
$(document).ready(function(){
$('#upload').click(function(){
console.log('upload button clicked!')
var fd = new FormData();
fd.append( 'userfile', $('#userfile')[0].files[0]);
$.ajax({
url: 'upload/do_upload',
data: fd,
processData: false,
contentType: false,
type: 'POST',
success: function(data){
console.log('upload success!')
$('#data').empty();
$('#data').append(data);
}
});
});
});
</script>
答案 5 :(得分:3)
JavaScript的:
function submitForm() {
var data1 = new FormData($('input[name^="file"]'));
$.each($('input[name^="file"]')[0].files, function(i, file) {
data1.append(i, file);
});
$.ajax({
url: "<?php echo base_url() ?>employee/dashboard2/test2",
type: "POST",
data: data1,
enctype: 'multipart/form-data',
processData: false, // tell jQuery not to process the data
contentType: false // tell jQuery not to set contentType
}).done(function(data) {
console.log("PHP Output:");
console.log(data);
});
return false;
}
PHP:
public function upload_file() {
foreach($_FILES as $key) {
$name = time().$key['name'];
$path = 'upload/'.$name;
@move_uploaded_file($key['tmp_name'], $path);
}
}
答案 6 :(得分:2)
如果要使用ajax提交文件,请使用“jquery.form.js” 这很容易提交所有表单元素。
样品 http://jquery.malsup.com/form/#ajaxSubmit
粗略观点:
<form id='AddPhotoForm' method='post' action='../photo/admin_save_photo.php' enctype='multipart/form-data'>
<script type="text/javascript">
function showResponseAfterAddPhoto(responseText, statusText)
{
information= responseText;
callAjaxtolist();
$("#AddPhotoForm").resetForm();
$("#photo_msg").html('<div class="album_msg">Photo uploaded Successfully...</div>');
};
$(document).ready(function(){
$('.add_new_photo_div').live('click',function(){
var options = {success:showResponseAfterAddPhoto};
$("#AddPhotoForm").ajaxSubmit(options);
});
});
</script>
答案 7 :(得分:2)
而不是 - fd.append( 'userfile', $('#userfile')[0].files[0]);
使用 - fd.append( 'file', $('#userfile')[0].files[0]);
答案 8 :(得分:-1)