gpt4 book ai didi

ajax - jQuery $.ajax(), $.post 在 Firefox 中发送 "OPTIONS"作为 REQUEST_METHOD

转载 作者:IT王子 更新时间:2023-10-29 03:23:35 24 4
gpt4 key购买 nike

在我认为相对简单的 jQuery 插件上遇到了问题...

插件应该通过 ajax 从 php 脚本中获取数据,以将选项添加到 <select> . ajax 请求非常通用:

$.ajax({
url: o.url,
type: 'post',
contentType: "application/x-www-form-urlencoded",
data: '{"method":"getStates", "program":"EXPLORE"}',
success: function (data, status) {
console.log("Success!!");
console.log(data);
console.log(status);
},
error: function (xhr, desc, err) {
console.log(xhr);
console.log("Desc: " + desc + "\nErr:" + err);
}
});

这似乎在 Safari 中运行良好。在 Firefox 3.5 中,REQUEST_TYPE服务器上的始终是“OPTIONS”,$_POST 数据不会出现。 Apache 将请求记录为“OPTIONS”类型:

::1 - - [08/Jul/2009:11:43:27 -0500] "OPTIONS sitecodes.php HTTP/1.1" 200 46

为什么这个 ajax 调用在 Safari 中有效,但在 Firefox 中无效,我该如何为 Firefox 修复它?

Response HeadersDate: Wed, 08 Jul 2009 21:22:17 GMTServer:Apache/2.0.59 (Unix) PHP/5.2.6 DAV/2X-Powered-By: PHP/5.2.6Content-Length  46Keep-Alive  timeout=15, max=100Connection  Keep-AliveContent-Type    text/htmlRequest HeadersHost    orderform:8888User-Agent  Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1) Gecko/20090624 Firefox/3.5Accept  text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8Accept-Language en-us,en;q=0.5Accept-Encoding gzip,deflateAccept-Charset  ISO-8859-1,utf-8;q=0.7,*;q=0.7Keep-Alive  300Connection  keep-aliveOrigin  http://ux.inetu.act.orgAccess-Control-Request-Method   POSTAccess-Control-Request-Headers  x-requested-with

这是 Firebug 输出的图片:

最佳答案

错误的原因是同源策略。它只允许您对自己的域执行 XMLHTTPRequests。看看你是否可以使用 JSONP改为回调:

$.getJSON( 'http://<url>/api.php?callback=?', function ( data ) { alert ( data ); } );

关于ajax - jQuery $.ajax(), $.post 在 Firefox 中发送 "OPTIONS"作为 REQUEST_METHOD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1099787/

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