15 Mart 2012, PERÅžEMBE
Bir XMLHttpRequest ile POST veri gönderme
Bazı veri JavaScript XMLHttpRequest kullanarak göndermek istiyorum.
HTML: aşağıdaki form var
<form name="inputform" action="somewhere" method="post">
<input type="hidden" value="person" name="user" />
<input type="hidden" value="password" name="pwd" />
<input type="hidden" value="place" name="organization" />
<input type="hidden" value="key" name="requiredkey" />
</form>
Nasıl eşdeğer JavaScript XMLHttpRequest kullanarak yazabilir miyim?
CEVAP
15 Mart 2012, PERÅžEMBE
This code bunu yapmak için nasıl gösterir.
İşte yukarıdaki bağlantıyı tekrar düşme ihtimaline karşı: bu sayfadan sadece listesini
var http = new XMLHttpRequest();
var url = "get_data.php";
var params = "lorem=ipsum&name=binny";
http.open("POST", url, true);
//Send the proper header information along with the request
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.setRequestHeader("Content-length", params.length);
http.setRequestHeader("Connection", "close");
http.onreadystatechange = function() {//Call a function when the state changes.
if(http.readyState == 4 && http.status == 200) {
alert(http.responseText);
}
}
http.send(params);
Bunu PaylaÅŸ:
Nasıl post yöntemi ile getJSON, veri g...
jQuery $.() ajax, $.post gönderme &quo...
Bir Dosya gönderme ve JSON olarak Java...
AngularJs $http.() post veri göndermez...
Veri gönderme Android YAZI...