特定の都市の天気を知りたいです。「 http://api.wunderground.com/api/4ab310c7d75542f3/geolookup/conditions/q/IA/pune.json 」から参照を得ました。次のコードをhtmlファイルに記述することにより、指定された都市に関連するすべての情報をjson形式で提供します-
<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/4ab310c7d75542f3/geolookup/conditions/q/IA/Pune.json",
dataType : "jsonp",
success : function(parsed_json) {
var location = parsed_json['location']['city'];
var temp_c = parsed_json['current_observation']['temperature_string'];
alert("Current temperature in "
+ location + " is: " + temp_c);
}
});
});
</script>
正しく動作しています。今、この jquery コードを extjs のコントローラーに統合したいと考えています。上記のjqueryコードをextjsに統合する方法を教えてもらえますか?