「私は単純なフォームを持っていて 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));
これは空の配列を返しています。