“我有简单的表格并使用 ajax 发布,但我无法在 php 脚本中获取 $_FILES”
<form id="submitForm" method="post" enctype="multipart/form-data" >
<input type="file" name="file" />
<input type="text" name="name" />
</form>
下面是ajax代码,告诉我我错在哪里
$.ajax({
url: '<?php echo base_url(); ?>getter/addItemRow',
type:"POST",
data:$('#submitForm').serialize(),
context: $('#table')
}).done(function(data) {
this.prepend(data);
});
下面是php代码行
print_r(var_dump($_FILES));
这是返回空数组;