如何在chrome扩展中获取发布数据

时间:2013-09-08 06:38:01

标签: javascript google-chrome post google-chrome-extension

我正在尝试使用简单的Chrome扩展程序发布数据,但它不起作用:

chrome.webRequest.onBeforeSendHeaders.addListener(
function(details) {
if (details.method == "POST") {
            var postData=details.requestBody.raw; 
            console.log(postData);
        }
return {requestHeaders: details.requestHeaders};
},
{urls: ["<all_urls>"]},
["blocking", "requestHeaders"]);

我正在使用此网站测试扩展程序:

https://mobile.onlinesbi.com/sbidownloader/DownloadApplication.action

1 个答案:

答案 0 :(得分:14)

我知道这是很久以前问过的,但是如果有其他人遇到同样的问题,我找到了答案。

当支持查看POST数据的唯一侦听器是 onBeforeRequest 时,您正在使用侦听器 onBeforeSendHeaders 。但是,您还需要提供&#34; requestBody&#34;的extraInfoSpec。到 .addListener 的第三个参数。下面是一个例子。

/* The Web Request API */
const WEB_REQUEST = chrome.webRequest;

WEB_REQUEST.onBeforeRequest.addListener(
    function(details) {
        if(details.method == "POST")
            console.log(JSON.stringify(details));
    },
    {urls: ["<all_urls>"]},
    ["blocking", "requestBody"]
);