如何从firefox浏览器扩展程序发出AJAX请求?

时间:2017-12-10 20:00:52

标签: ajax browser-extension

我对浏览器扩展程序完全陌生。我已经成功制作了一个自动更改网页内容的简单扩展,现在我希望它在查询服务器的真值或假值后更改该内容。我试图用AJAX请求(纯javascript)来做这件事。出于某种原因,我无法从与浏览器扩展程序交互的服务器上的PHP脚本中获取任何信息。

清单:

{

  "manifest_version": 2,
  "name": "Truth Seeker",
  "version": "1.0",

  "description": "Returns true.",

  "icons": {
    "48": "icons/icon.png"
  },

  "content_scripts": [
    {
      "matches": ["*://*/*"],
      "js": ["script.js"]
    }
  ]

}

脚本:

theBool = false;
url = /* PHP URL HERE */;
string = "";

request(MakeOutput, url, string);
if(theBool == true){
    alert("is true");
}

function MakeOutput(x){
    if(x == "true"){
       theBool = true; 
    }
}

function request(fix, url, string){         
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (xhttp.readyState == 4 && xhttp.status == 200) {
            fix(xhttp.responseText);
        }
    }
    xhttp.open("POST", url, true);
    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhttp.send(string);
}

服务器上的PHP文件只是echos" true"在这一刻。如果我直接访问该PHP脚本(通过在浏览器中键入URL),它将警告"是真的"。为什么会这样做,但没有其他页面会这样做?

1 个答案:

答案 0 :(得分:1)

好吧,我把头发弄了一会儿,放弃了自己,问了一个问题,然后在几分钟内自己找出了答案。为了帮助将来的其他人,我将其添加到清单中:

max.poll.interval.ms