gpt4 book ai didi

jquery - Greasemonkey、跨域、jQuery、get() 请求失败,出现 405 "method not allowed"

转载 作者:行者123 更新时间:2023-12-01 03:22:54 25 4
gpt4 key购买 nike

我正在制作跨域 jQuery get() 并且它失败并出现“405 not allowed”错误。

我的 Greasemonkey 脚本是这样的:

// ==UserScript==
// @include http://www.foobar.com/*
// ==/UserScript==

var query = "www.foobar.com";
$.get(
url,
function(response){
alert(response);
},
"xml"
);

任何指点都将受到高度赞赏。

最佳答案

get() 和其他 jQuery AJAX 函数在设计上不能跨域工作。 (如果他们这样做的话,这将是一个巨大的安全漏洞。)

使用GM_xmlhttpRequest()相反,它确实允许跨域 AJAX。

关于jquery - Greasemonkey、跨域、jQuery、get() 请求失败,出现 405 "method not allowed",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8171844/

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