gpt4 book ai didi

google-chrome - Chrome 扩展 xhr 请求被取消

转载 作者:行者123 更新时间:2023-12-02 01:08:39 25 4
gpt4 key购买 nike

我正在尝试构建一个 chrome 扩展,它使用 xhr 请求从外部 api 获取响应。我已经设置了扩展的权限,如 chrome 扩展文档中所述,但 xhr 请求在网络中被取消。

list .json

  "browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Chrome extension title"
},
"permissions": [
"activeTab",
"storage",
"https://*/"
]

在 popup.js 中

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://putsreq.com/4z01VNOBPeD144njWNdi", true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && this.status == 200) {
var theValue = "asdfassf";
alert("This is doen");
// chrome.storage.sync.set({'value': theValue}, ()=> {
// // Notify that we saved.
// document.location.href = "timer.html";
// });
}
}
xhr.send();

最佳答案

我错过了添加用于取消默认表单提交的 event.preventDefault()。当我将 event.preventDefault() 代码添加到上面的代码时,它起作用了。

关于google-chrome - Chrome 扩展 xhr 请求被取消,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46325437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com