我正在使用Greasemonkey GET
发出GM_xmlhttpRequest()
请求:
$(".getReview").click(function(){
var videoId = $(this).parents("li").find("a").attr("href");
alert(videoId);
GM_xmlhttpRequest({
method: "GET",
url: "http://www.amitpatil.me/demos/ytube.php",
data: "username=johndoe&password=xyz123",
headers: {
"User-Agent": "Mozilla/5.0", // If not specified, navigator.userAgent will be used.
"Accept": "text/xml" // If not specified, browser defaults will be used.
},
onload: function(response) {
console.log(response);
}
});
这是服务器代码 ytube.php :
<?php
print_r($_REQUEST);
print_r($_GET);
echo "Hello friends".$_GET['vid'];
?>
$_REQUEST
=&gt;返回一些与WordPress相关的数据。
$_GET
=&gt;返回一个空白数组。
我无法弄清楚出了什么问题。我甚至尝试了POST
方法。
答案 0 :(得分:5)
data
参数仅适用于POST
方法。如果您希望使用GET
请求发送数据,请将其附加到以下网址:
GM_xmlhttpRequest ( {
method: "GET",
url: "http://www.amitpatil.me/demos/ytube.php?username=johndoe&password=xyz123",
// Use no data: argument with a GET request.
... ...
} );
但出于各种原因,通过POST
发送数据会更好。为此,您需要指定编码:
GM_xmlhttpRequest ( {
method: "POST",
url: "http://www.amitpatil.me/demos/ytube.php",
data: "username=johndoe&password=xyz123",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"User-Agent": "Mozilla/5.0", // If not specified, navigator.userAgent will be used.
"Accept": "text/xml" // If not specified, browser defaults will be used.
},
... ...
} );
如果要发送大量数据或复杂数据,请使用JSON:
var ajaxDataObj = {
u: username,
p: password,
vidInfo: [123, "LOLcats Terrorize City!", "Five stars"]
};
var serializedData = JSON.stringify (ajaxDataObj);
GM_xmlhttpRequest ( {
method: "POST",
url: "http://www.amitpatil.me/demos/ytube.php",
data: serializedData,
headers: {
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0", // If not specified, navigator.userAgent will be used.
"Accept": "text/xml" // If not specified, browser defaults will be used.
},
... ...
} );
您的PHP会像这样访问它:
$jsonData = json_decode($HTTP_RAW_POST_DATA);
<强>更新强>
Greasemonkey和Tampermonkey现在要求您在元数据块中set @grant GM_xmlhttpRequest
。一定要这样做。