我有以下HTML表单:
<form action="https://portal. .com/index.php/ajax/do_add" method="post" accept-charset="utf-8" id="add_form" enctype="multipart/form-data"><div style="display:none">
<input type="hidden" name="csrf_test_name" value=" " />
<table id="table_add">
<tr>
<td>Type:</td>
<td><select name="type">
<option value="blank"></option>
<option value="document">Document</option>
<option value="software">Software</option>
<option value="video">Video</option>
</select></td>
</tr>
<tr class="add_doc add_sw"><td>File:</td><td><input type="file" name="file" /></td></tr>
<tr class="add_vid"><td>URL:</td><td><input type="text" name="url" value="" /></td></tr>
<tr class="add_doc"><td>Title:</td><td><input type="text" name="title" value="" /></td></tr>
<!--OTHER ELEMENTS REMOVED FOR BREVITY -->
<tr class="add_doc add_sw add_vid"><td colspan="2"><input type="submit" name="submit" value="Submit" /></td></tr>
</table>
</form>
我有以下jQuery代码(注意$ ml等于默认的$):
$ml('form#add_form')
.submit(function(e){
e.preventDefault();
console.log($ml(this)); //outputs the form element context, as I was expecting
var formdata = new FormData($ml(this));
$ml.ajax({
type: "POST",
url: "/ajax/do_add",
data: formdata,
processData: false,
contentType: false
})
.done(function(msg) {
$ml('form#add_form').each(function(){ this.reset();});
$ml('td#form_add_status').html('<span style="color:green;">Update complete</span>');
})
.fail(function(jqXHR, msg) {
$ml('td#form_add_status').html('<span style="color:red;">Error Updating Entry: ' + msg + '</span>');
})
});
不使用FormData
,只需手动传递表单信息就可以了 - 除了我有一个file
类型input
。没有AJAX,表单工作正常,使用AJAX我需要FormData
来传递文件。我已经搜索过网络,发现了一些东西,但都没有。
开发者控制台在发送时显示以下内容:
答案 0 :(得分:1)
我不是百分百肯定,但根据文档,FormData接受一个HTMLFormElement,它可能不被jQuery对象包含($ml(this)
)。尝试仅传递this
?
另一种选择是使用经过验证的$(this).serialize()
而不是引入FormData
。