フォームデータに追加オブジェクトオブジェクトが空です。フォームデータオブジェクトは、追加呼び出し後も空を表示します
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
var formy = new FormData();
formy.append("file", $("#file")[0].files[0]);
console.log(formy);
});
});
</script>
</head>
<body>
<input id="file" type="file" size="40"><br><br>
<button>Send an HTTP POST request to a page and get the result back</button>
</body>
</html>
console.log($("#file")[0].files[0])
が機能していないFORMDATAのために追加されたのはなぜ私が{name: "document.pdf", lastModified: 1462959300000, lastModifiedDate: Wed May 11 2016 15:05:00 GMT+0530 (IST), webkitRelativePath: "", size: 5275…}
ファイル与え、一方、コンソールログに上記のコードの出力は私に
Formdata{}
append:function append()
arguments:null
caller:null
length:2
name:"append"
を与えますか?
これはあまり機能していません。私はまだFormdata {} –
を取得する@KanikaMidhaあなたがまだ問題がある場合は私に教えてください。 :) –