编程语言
首页 > 编程语言> > javascript-如何修复Greasemonkey(GM_xmlhttpRequest)上的__exposedProps__错误?

javascript-如何修复Greasemonkey(GM_xmlhttpRequest)上的__exposedProps__错误?

作者:互联网

我已经为Greasemonkey编写了我的第一个脚本,它工作得很好,除了它在正在工作的每个页面中返回returnProps错误.我已经解决了所有其他错误,但是这个错误仍然存​​在,并且根据网上的一些文章(如this),将来在Firefox 17发布时,它将破坏我的脚本. (现在我正在使用Firefox 15.0,幸运的是,它仅返回警告错误!)

我在脚本中使用GM_xmlhttpRequest:

function doProcess(id, in_process_type){

    var set_id = GM_getValue("pid"+id);

    GM_xmlhttpRequest({
        method: "POST",
        url: "https://website_address/return_params.php",
        data: "pid="+set_id,
        headers: {
            "Content-Type": "application/x-www-form-urlencoded"
        },
        onl oad: function(response) {
    --->    var params = response.responseText;
            params = params.replace(/(\r\n|\n|\r|\s)/gm,"");

            ..........
        }
    });
}

这是错误消息,它指向我在其前面放置一个箭头的行:

Error: Exposing chrome JS objects to content without __exposedProps__ is insecure and deprecated. See https://developer.mozilla.org/en/XPConnect_wrappers for more information.
Source File: file:///Users/Mona/Library/Application%20Support/Firefox/Profiles/tonfd656.default/gm_scripts/MonaTest/MonaTest.user.js
Line: 133 

我找到了这个page,它提供了此错误的解决方案,但老实说,我无法弄清楚如何在这里使用它!

非常感谢您提前提供的所有帮助…
并感谢您的宝贵时间!

解决方法:

这是Greasemonkey本身的问题/潜在错误.看到:

> Issue #1595, “Use exposedProps
> Issue #1607, “GM_xmlhttpRequest response.responseText is undefined in Nightly17.0a1…”

您可能需要权衡并跟踪那些错误报告.

如果您链接到完整的脚本,我们也许可以提供解决方法,但很可能只能在Greasemonkey本身中进行修复.

标签:firefox,greasemonkey,gm-xmlhttprequest,javascript
来源: https://codeday.me/bug/20191127/2076350.html