我已经制作了一个将发送输入类型文件的表单,在我的服务器端我想获得$_FILES
价值,所以我使用print_r($_FILES)
了,但在我的 ajax 响应中我没有得到任何价值,这里是我的代码..
<form id="my_form">
<input type="file" id="image_file" name="image_file"/>
</form>
$('#my_form').submit(function() {
var data = $('#my_form').serialize();
$.ajax({
url: 'ajax.php',
type: 'POST',
data: data,
enctype: 'multipart/form-data',
success: function(response) {
alert(response);
},
});
return false;
});
这里是我的 php 代码
<?php
$name = $_FILES['image_file']['name']; // get the name of the file
$type = $_FILES['image_file']['type']; // get the type of the file
$size = $_FILES['image_file']['size'];
echo $name;
//or
print_r($_FILES);
?>
请帮我 ...
谢谢..