我正在尝试使用Ajax与servlet通信。当我查看firebug中的Net选项卡时,我可以看到我从服务器获得了正确的响应。尽管如此,Ajaxrequest似乎并没有调用我的vulAan函数。要检查ajaxrequest是否调用了任何函数,我添加了window.alert()函数。只调用window.alert(“request verstuurd”)。这是代码:
window.onload = function() {
$("registreerform").observe("submit", controleer);
$$("input")[1].observe("blur", getVulAan);
$$("input")[2].observe("blur", getVulAan);
};
function getVulAan(event){
var post = $$("input")[1].value;
var huis = $$("input")[2].value;
if (post && huis) {
window.alert("request verstuurd");
event.stop();
new Ajax.Request (
"http://www.ntwpracticumnet.ou.nl:8080/registratie/PostcodeServlet",
{ method: "get",
parameters: {postcode: "1076CT", huisnr: "390"},
onSucces: vulAan,
onFailure: nietGelukt,
onExcepton: nietGelukt
}
);
}
}
function vulAan(ajax) {
window.alert("request geaccepteerd");
var jsWaarde = JSON.parse(ajax.responseText);
var plaats = jsWaarde.plaats;
var straat = jsWaarde.straat;
$$("input")[3].value = plaats;
$$("input")[4].value = straat;
}
function nietGelukt () {
window.alert("niet gelukt");
}
任何人都知道什么是错的?
答案 0 :(得分:1)
您需要将onSucces
重命名为onSuccess
,然后检查http://prototypejs.org/doc/latest/ajax/Ajax/Request/