编辑:我解决了我的问题,每个人。我链接到了错误的 javascript 页面。那是愚蠢的。非常感谢你
我有一个带有参数随机的ajax请求GET:是的,但是当我使用PHP检查参数时,参数似乎没有退出
我的代码是这样的:对于 ajax
function fetchData() {
new Ajax.Request("webservice.php", {
method: "get",
parameters: {random: "yes"},
onSuccess: displayData,
onFailure: ajaxFailure,
onException: ajaxFailure
});
}
我写PHP来检查参数
if ($_GET["random"] == "yes"){
do something
}else if(isset($_REQUEST["poll"]) && $_SERVER["REQUEST_METHOD"] == "GET"){
//this is b/c i have another ajax request with parameters {poll: "favChar"},
do something
}
我收到发出 ajax 请求的错误。我检查了我的 PHP 代码。我输入 wwww.domainname.com/webservice.php?random=yes 并且页面正确输出结果。有人能帮我吗?感谢你