は、ここに私のコードです:URLに画像ファイルを送信するには?
function ajax_post(){
// Create our XMLHttpRequest object
var hr = new XMLHttpRequest();
// Create some variables we need to send to our PHP file
var url = "LiveUpdate.php";
var sb = document.getElementById("LiveUpdate").value;
var FirstName = document.getElementById("FirstName").value;
var images = document.getElementById("images").value;
var vars = "update="+sb+"&FirstName="+FirstName+"&images="+images;
hr.open("POST", url, true);
// Set content type header information for sending url encoded variables in the request
hr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
// Access the onreadystatechange event for the XMLHttpRequest object
hr.onreadystatechange = function() {
if(hr.readyState == 4 && hr.status == 200) {
var return_data = hr.responseText;
document.getElementById("success_insert").innerHTML = return_data;
}
}
// Send the data to PHP now... and wait for response to update the status div
hr.send(vars); // Actually execute the request
document.getElementById("success_insert").innerHTML = "processing...";
}
私はちょうど最初の名前、ミドルネーム、姓、および画像などのすべての基本的な詳細を送りたいです。問題は、名前、ミドルネーム、姓を送信できますが、イメージをLiveUpdate.phpエンドポイントに渡すことができないことです。
何が起こっているのですか?
最近のブラウザはすべて '(F12)に建設されたJavaScriptデバッガを持って'正常にデバッガをロードします。今すぐあなた自身のコードをデバッグすることができます – RiggsFolly