jQueryのajaxでファイルをアップロードしています
$("#transfer").live("click", function()
{
var data = new FormData();
data.append("your_email", $("#your_email").val());
data.append("your_message", $("#your_message").val());
$.each($(".friends_email_item"), function(a,b)
{
var email = $(b).text();
data.append("emails[]", email);
});
for(i = 0; i < files.length; i++)
data.append("files[]", files[i]);
$.ajax({
url: "upload.php",
type: "POST",
success: function(a)
{
console.log(a);
},
data: data,
contentType: false,
processData: false
});
});
テキストファイルやスクリーンショットなどの小さなファイルを選択したとき。投稿されたデータと投稿されたファイルのダンプを取得します。
array
'your_email' => string 'Hello@test.com' (length=14)
'your_message' => string 'test' (length=7)
array
'files' =>
array
'name' =>
array
0 => string '1.png' (length=5)
'type' =>
array
0 => string 'image/png' (length=9)
'tmp_name' =>
array
0 => string 'C:\wamp\tmp\phpBD32.tmp' (length=23)
'error' =>
array
0 => int 0
'size' =>
array
0 => int 117994
50 MB の zip または 500 MB のビデオをアップロードすると、空の配列が返されます
array
empty
array
empty
大きなファイルの場合、データの投稿に失敗するのはなぜですか?