TheGreenDragon
Erfahrenes Mitglied
Hi,
ich habe folgenden Code:
Das Absenden und Empfangen funktioniert auch, denn steht im Firebug das er noch auf Antwort wartet obwohl schon eine Antwort kam.
warum endet der Aufruf nicht?
ich habe folgenden Code:
Code:
var sUrl = 'AccountDataRetriever.php';
var postData = 'account_id=' + name_to_value_array[the_key];
var callback = {
success : function(o) {
try {
var data = YAHOO.lang.JSON.parse(o.responseText);
}
catch (e) {
alert("Invalid data");
}
for (i = 0; i < document.getElementById("account_stage").length; i++) {
if (document.getElementById("account_stage").options[i].getAttribute("value") == data.status) {
document.getElementById("account_stage").options[i].selected = true;
}
}
},
failure : function(o) {
alert("AJAX doesn't work"); // FAILURE
}
}
YAHOO.util.Connect.asyncRequest('POST', sUrl, callback, postData);
Das Absenden und Empfangen funktioniert auch, denn steht im Firebug das er noch auf Antwort wartet obwohl schon eine Antwort kam.
Code:
POST http://localhost/zzzzz/AccountDataRetriever.php
POST http://localhost/zzzzz/AccountDataRetriever.php
360ms
zzzzz_...7181193 (Zeile 72)
ParameterHeaderPostPutAntwortCacheHTML
{"status":"gut"}
Zuletzt bearbeitet: