我使用这个ajax代码提交表单并上传多个输入文件。我想通过ajax发送所有表单数据。文本输入成功发送但文件输入未通过ajax发布成功! 如何更改此代码?
$("#add_order").click(function () {
//*****get data input
var formData = new FormData();
formData.append( 'action', 'add_order');
formData.append( 'customer_name', $('input[name=customer_name]').val());
formData.append( 'date', $('input[name=date]').val());
formData.append( 'order_status', $('input:radio[name=order_stautus]').val());
formData.append( 'total_price', $('input[name=totalprice]').val());
formData.append( 'quits', $('input[name=quits]').val());
formData.append( 'debt', $('input[name=debt]').val());
formData.append( 'desc', $('#desc').val());
formData.append( 'desc2', $('#desc2').val());
$.each($("input[type=file]"), function(i, obj) {
$.each(obj.files,function(j,file){
formData.append('photo['+i+']', file);
});
});
$.ajax({
url: "includes/ajax/ajax.php",
data: formData,
processData: false,
contentType: 'multipart/form-data',
type: 'POST',
dataType:'json',
success: function(response){
//load json data from server and output message
if(response.type == 'error'){ //load json data from server and output message
output = '<div class="alert alert-danger">'+response.text+'</div>';
}else{
output = '<div class="alert alert-danger">'+response.text+'</div>';
}
$("#results").append(output).slideDown();
}
});
});
获取表单数据的PHP代码:
if($_POST['action']=='add_order'){
$customer_id = 1;
$date = $_POST['date'];
$status = $_POST['order_status'];
$total_price = $_POST['total_price'];
$quits = $_POST['quits'];
$debt = $_POST['debt'];
$desc = $_POST['desc'];
$desc2 = $_POST['desc2'];
for($i=0; $i<count($_FILES['photo']['name']); $i++) {
//Get the temp file path
$tmpFilePath = $_FILES['photo']['tmp_name'][$i];
//Make sure we have a filepath
if ($tmpFilePath != ""){
//Setup our new file path
$newFilePath = "../../uploads/orders/" . $_FILES['photo']['name'][$i];
//Upload the file into the temp dir
if(move_uploaded_file($tmpFilePath, $newFilePath)) {
//Handle other code here
}
}
}
formData console.log:
答案 0 :(得分:0)
根据this,对于ajax文件上传,contentType
必须设置为false。
也许尝试命名所有文件photo[]
而不是photo[n]
让PHP服务器处理数组转换。请参阅http://php.net/manual/en/features.file-upload.multiple.php。
答案 1 :(得分:0)
您必须使用JSON.stringify:
$.ajax({
type: 'post',
data: {form_data: JSON.stringify(formData)},
contentType: 'application/json',
dataType: 'json'
});
您还需要指定&#34; application / json&#34;而不是&#34; multipart / form-data&#34;。 您可以使用以下工具检查您的json字符串是否正确格式化:http://jsonlint.com/。
在PHP方面,您必须解码传入的数据,如下所示:
json_decode($_POST[form_data]);
请注意,请求中的 dataType 指定您希望从服务器接收的内容,而contentType是您要发送的内容类型 。
在PHP文件中,您必须根据json格式对响应进行json格式编码:
echo json_encode($my_response);
修改强>: 这里有一些关于在PHP端访问json对象的提示:
<?php
$my_json = json_decode($_POST["form_data"]);
$action = $my_json["action"];
/*
DO STUFF
*/
$response = array('error' => "My error");
if(/* all is correct */)
$response = array('response' => "My response", 'id' => 3);
echo json_encode($response);
?>