我正在用 Java EE 制作一个应用程序,并想使用 Ajax 来更新一些东西。只有参数没有出现在 URL 中。
好的网址:localhost:8080/Weblog/AddComment?commenttext=example&postid=3
这是在浏览器栏中显示为 URL 的内容:localhost:8080/Weblog/AddComment
Javascript:
function doAddComment() {
var url = "AddComment?commenttext="+newcommentcontent.value+"&postid="+postid.value;
var req = getXHR();
req.onreadystatechange = function()
{ processRequestChange(req);
req.open("GET", url, true);
req.send(null);
}
}
我究竟做错了什么?