$_POST
Blob を使用してバイナリ データをサーバーに送信していますが、変数には何もありません。私は何を間違えましたか?
var xhr = new XMLHttpRequest();
xhr.open('POST', '/save.php', true);
var formData = new FormData();
formData.append("data", new Blob(["㚂☇䰉耸ڀ찃怮...binary...:⡒㠯ݟᑣ"]));
xhr.send(formData);
xhr.onload = function(e){
if (this.status == 200){
console.log(this.responseText);
}
};
サーバ側:
var_dump($_POST); //returns array(0) {}