0

過去 7 日間の天気情報を取得しようとしていますが、何も返されません。ブラウザからURLを入力すると、動作し、xmlフォーマット コードが返されます。しかし、jquery コードを使用して html を実行すると、実行されません。どこが間違っていたのか教えてください。

私のコードは次のとおりです。

<!doctype html>

<html>

<head>

    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <meta charset="utf-8">

    <title>OpenWeatherMap API jQuery Plugin</title>

    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

    <style>

        /* for presentation only */

        body {
            font: 16px Arial, Helvetica, sans-serif;
            margin: 0;
        }

        .weather-wrapper {
            background: skyblue;
            margin: 5% 0 5% 5%;
            padding: 40px 5%;
            float: left;
            color: white;
            width: 70%;
            max-width: 400px;
        }

        strong {
            color: steelblue;
        }

        .capitalize {
            text-transform: capitalize;
        }

        .hide {
            display: none;
        }

    </style>

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script type="application/javascript">

        $(document).ready(function(){

            $.getJSON('http://api.openweathermap.org/data/2.5/forecast/daily?q=Hyderabad,IN&mode=xml&appid=c9d49310f8023ee2617a7634de23c2aa',function(result){
             console.log(result);

             });


        });
    </script>

</head>

<body lang="en">

<script type="text/javascript">
    if (typeof jQuery == 'undefined') {
        document.write(unescape("%3Cscript src='js/lib/jquery.1.9.1.min.js' type='text/javascript'%3E%3C/script%3E"));
    }


</script>

<script src="js/plugins/openWeather.min.js"></script>


</body>

</html>
4

1 に答える 1

2

getJSON 関数は JSON データを返すことを想定しています。したがって、次のような XML データを返すことができる関数が必要です。

$.ajax({
    type: "get",
    url: "http://api.openweathermap.org/data/2.5/forecast/daily?q=Hyderabad,IN&mode=xml&appid=c9d49310f8023ee2617a7634de23c2aa",
    dataType: "xml",
    success: function(data) {
        /* handle data here */
    },
    error: function(xhr, status) {
        /* handle error here */
    }
});

これで、この関数は xml データを返すことができます ( dataType: "xml")

JSON データを返すように URL を変更することもできます。 http://api.openweathermap.org/data/2.5/forecast/daily?q=Hyderabad,IN&mode=json&appid=c9d49310f8023ee2617a7634de23c2aa

mode=jsonURLを変更しました

于 2016-06-17T09:19:24.283 に答える