0

用户在其计算机上使用以下JavaScript/运行页面Ajax

xmlhttp.open("POST", "ProcessRequest.php", true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.send(encodeURIComponent("fname=Mr.&lname=tester"));

服务器端脚本 ProcessRequest.php 似乎无法访问这些变量。
例如 $_POST['fname'] 给出以下错误:

注意:未定义索引:fname

我究竟做错了什么?我正在使用 WAMP 运行它。

4

1 回答 1

0

你编码太多了。你需要的是这样的:

xmlhttp.send("fname=" + encodeURIComponent("Mr.") + "&lname=" + encodeURIComponent("tester"));

当然,您可以使用一个函数来使其更加干燥。

于 2013-03-20T22:20:55.930 回答