1

我正在开发一个网络应用程序。在这里,我在 JavaScript 中创建了一个弹出窗口。现在我喜欢在这个窗口内创建一个天气预报。

最简单的方法是什么?

我在这里做到了:使用 jQuery 从 Yahoo 获取天气

$(".popup-button").click(function(evt){
//prevent default link behavior
    evt.preventDefault();

//get id from clicked element
var id = $(this).attr("id");

switch (id) {
    case "popup-button-wetter":
        //centering with css
        centerPopup($("#popup-wrapper-wetter"));
        //load popup  
        loadPopupadditional($("#popup-wrapper-wetter"));
        //get weather
        getWeather ()
        break;
          ......


function getWeather () {
     $.get("http://weather.yahooapis.com/forecastrss?w=782458&u=c", function(data){
                   console.log("Data Loaded: " + data);
                 });
            }
    });

但后来我得到了这个错误:

XMLHttpRequest 无法加载http://weather.yahooapis.com/forecastrss?w=782458&u=c。Access-Control-Allow-Origin 不允许使用原始文件://。

这是什么意思?

4

2 回答 2

1

您不能使用 javascript 进行跨域 ajax 请求。

于 2012-01-03T14:39:34.197 回答
1

我知道我迟到了,但是在构建天气页面时遇到了同样的问题。我使用了 Google 的 API,但你应该可以很容易地为 Yahoo 的 API 重写它:

在 PHP 文件中执行以下操作:

<?php
$lat = explode(".", $_GET["lat"] * 1000000); //latitude returned by JS geolocation
$lon = explode(".", $_GET["lon"] * 1000000); //longitude returned by JS geolocation
$api = simplexml_load_string(utf8_encode(file_get_contents("http://www.google.com/ig/api?weather=,,," . $lat[0] . "," . $lon[0] . "&zoom=10&hl=de")));
echo $api->weather->current_conditions->temp_c->attributes()->data; //prints the current temperature in °C
?>

然后通过插入将 HTML 页面的字符集设置为 UTF-8

<meta charset="utf-8">

<head>标签中,以便正确显示 ä、ö 和 ü 等变音符号。

Tl;dr:您可以通过 PHP 获取 XML 文件,然后将 XMLHttpRequest 发送到本地 PHP 文件,从而绕过跨域 AJAX 块。;)

于 2012-01-23T20:34:23.550 回答