0

.json リンクに変数を作りたい

例えば

http://api.wunderground.com/api/102376e7c0e1c995/geolookup/conditions/q/IA/Cedar_Rapids.json

これは、JSONたとえば、気象データを提供するもので、Web サイトの訪問者に気象条件を提供したいJSON国と都市でこのリンクを変数にしたい

例えば

http://api.wunderground.com/api/102376e7c0e1c995/geolookup/conditions/q/"country variable here "/"city variable here".json
4

1 に答える 1

0

これを試して:

var state = 'CA';
var city = 'San_Francisco';
var URL = 'http://api.wunderground.com/api/102376e7c0e1c995/geolookup/conditions/q/' + state + '/' + city + '.json';

$.ajax({
    url: URL,
    dataType: "jsonp",
    success: function(parsed_json) {
        var location = parsed_json['location']['city'];
        var temp_f = parsed_json['current_observation']['temp_f'];
        alert("Current temperature in " + location + " is: " + temp_f);
    }
});​

デモはこちら

于 2012-12-31T14:29:54.230 に答える