我在 extjs 工作。我想查找特定城市的天气。我从“ 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 的控制器中。那么有人可以指导我如何在 extjs 中集成上面的 jquery 代码吗?