Access-Control-Allow-Origin 不允许来源 http://XXXXX.com

发布于 2024-12-27 09:56:25 字数 477 浏览 1 评论 0原文

我正在尝试像这样向雅虎小麦预报发出请求

function parseXml(woeid)
{
 $.ajax({
  type: "GET",
  url: "http://weather.yahooapis.com/forecastrss?w="+woeid,
  dataType: "xml",
  success: parse_wheather
 }); 
} 

,并且收到以下错误消息

XMLHttpRequest cannot load http://weather.yahooapis.com/forecastrss?w=1937103. Origin http://XXXXXXXX.com is not allowed by Access-Control-Allow-Origin.

我知道我无法从 localhost 发出请求,但我没有运行 localhost 我该如何解决这个问题?

I am trying to make a request to the yahoo wheather forcast like this

function parseXml(woeid)
{
 $.ajax({
  type: "GET",
  url: "http://weather.yahooapis.com/forecastrss?w="+woeid,
  dataType: "xml",
  success: parse_wheather
 }); 
} 

and I get the following error message

XMLHttpRequest cannot load http://weather.yahooapis.com/forecastrss?w=1937103. Origin http://XXXXXXXX.com is not allowed by Access-Control-Allow-Origin.

I know that I can't make the request from localhost , but I am not running a localhost
How can I solve this problem ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

李白 2025-01-03 09:56:25

我知道我无法从本地主机发出请求

实际上,由于相同的 原始策略限制您无法发送跨域 AJAX 调用。因此,您不仅限于 localhost。您只能使用与 http://weather.yahooapis.com 不同的内容。因此,除非包含您的 javascript 的页面托管在该域上,否则您无法向其发送 AJAX 请求。

这是指南,您可以查看一下有关跨域 AJAX 的信息来电。在您的情况下,您可以使用服务器端桥。因此,您将在您的域上定义一个服务器端脚本,该脚本将获取远程域结果,然后您可以将 AJAX 请求发送到您的脚本,以避免违反同源策略限制。

I know that I can't make the request from localhost

Actually, due to the same origin policy restriction you cannot send cross domain AJAX calls. So you are not only limited to localhost. You are limited to anything different than http://weather.yahooapis.com. So unless the page containing your javascript is hosted on this domain you cannot send AJAX requests to it.

Here's a guide you might take a look at about cross domain AJAX calls. In your case you could use a server side bridge. So you will define a server side script on your domain that will fetch the remote domain results and then you could send the AJAX request to your script in order to avoid violating the same origin policy restriction.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文