从数组中检索信息

时间:2014-11-15 18:00:56

标签: php json

嘿,我对php很新,所以如果我问一个愚蠢的问题,请原谅我。我已经将这个话题重新研究了几个小时,我似乎找不到有用的东西。

我需要从数组中提取信息。该数组位于此URL

http://api.wunderground.com/api/5e8af95dbdebbd73/geolookup/conditions/forecast/q/UK/England.json

如果您搜索,您可以看到许多Eng / Uk城镇的所有信息

我试图让用户可以输入他们当前的位置,他们绘制的信息与上面链接的数组相同。

这是到目前为止的代码

 <h3> Weather Data </h3>

<form method= "POST" action="about.php">

<input type="text" name="location" value = "location"/>

</form>


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>

<script>

jQuery(document).ready(function($) {

  $.ajax({

  url : "http://api.wunderground.com/api/5e8af95dbdebbd73/geolookup/conditions/forecast/q/UK/England.json",

 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);

  }
  });
});

0 个答案:

没有答案