油脂猴:"GM_xmlhttpRequest is not defined"新更新



为什么这个简单的 Greasemonkey 脚本对我不起作用 https://jsfiddle.net/pghnsw8z/1/?我的意思是,在进行 ajax 调用时,我没有得到成功的响应,而是出现错误。

// ==UserScript==
// @name        _Starter AJAX request in GM, TM, etc.
// @match       *://php.net/*
// @grant       GM_xmlhttpRequest
// @connect     php.net
// ==/UserScript==
GM_xmlhttpRequest ( {
    method:     'GET',
    url:        'http://php.net/',
    onload:     function (responseDetails) {
                    // DO ALL RESPONSE PROCESSING HERE...
                                alert(responseDetails);
                    console.log (
                        "GM_xmlhttpRequest() response is:n",
                        responseDetails.responseText.substring (0, 80) + '...'
                    );
                }
} );

我在这里找到了 https://stackoverflow.com/a/42592356/9483949 脚本,似乎它对早期的人效果很好。

我正在使用Firefox 59.0.1和Greasemonkey 4.3

重新启动 Firefox 并重新安装脚本没有帮助。

文档 : https://wiki.greasespot.net/GM.xmlHttpRequest

GM API 已更改。你必须使用 GM 类的 xmlHttpRequest 属性,它是兼容性:GM 4.0+。

GM_xmlhttpRequest替换为:GM.xmlHttpRequest如下所示:

// ==UserScript==
// ...
// @grant         GM.xmlHttpRequest
// ==/UserScript==
GM.xmlHttpRequest({

最新更新