gpt4 book ai didi

javascript - 来自 Chrome 扩展程序的 POST 请求

转载 作者:行者123 更新时间:2023-11-28 20:15:48 38 4
gpt4 key购买 nike

我正在尝试使用我的 chrome 扩展程序进行 POST。这是我使用的方法。

function uploadFile(url){
var req = new XMLHTTPRequest();
req.open("POST", "https://wepicit.s3.amazonaws.com/", true);
var params = "key="+myKey
"&acl="+"public-read"
"&Content-Type="+"text/plain"
"&AWSAccessKeyId"+tempKey
"&file="+url+".txt"
req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
req.setRequestHeader("Content-length", params.length);
req.setRequestHeader("Connection", "close");
req.send(params);
req.onreadystatechange = function(){
// If the request completed, close the extension popup
if (req.readyState == 4)
if (req.status == 200) console.log('success');
};
}

我收到的错误是“XMLHTTPRequest()”未定义。请帮忙。谢谢。

最佳答案

JavaScript 区分大小写。

不是new XMLHTTPRequest(),而是new XMLHttpRequest()

关于javascript - 来自 Chrome 扩展程序的 POST 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19205482/

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