PHP Ajax JavaScript Json获取天气信息实现代码

作者:lijiao 时间:2023-11-20 20:51:27 

要在自己的网站上添加一个天气预报功能,是一个很普通的需求,实现起来也不是很难。今天来介绍几个简单的方法。

使用第三方服务

有这样的一种简单的方式,借助http://www.tianqi.com/plugin/网上的天气服务,可以定制我们的显示形状,实现添加天气预报的功能。

下面给出一个简单的小例子:

<iframe width="420" scrolling="no" height="60" frameborder="0" allowtransparency="true" src="http://i.tianqi.com/index.php?c=code&id=12&icon=1&num=5"></iframe>

间接方式

说是间接的获取天气信息,那是因为对于我们个人而言,是不可能自己发射卫星,或者维护天气预报那么大的计算量的服务的。我们是借助其他网站提供的数据接口来实现的。

思路

由于Ajax本身的特点决定了岂不能够跨域请求,所以我们需要借助PHP来试下代理的功能。具体思路如下:

PHP Ajax JavaScript Json获取天气信息实现代码

客户端打开我们的网页根据PHP获得客户端IP使用第三方服务获取该IP对应的城市编码调用天气接口,根据城市编码来获取天气信息客户端获得服务器返回的数据,并显示到页面上。

使用到的服务

下面列出我们用到的一句常用的接口
 •ip转城市:”http://ip.taobao.com/service/getIpInfo.php?ip=XXX”
 •查看对应的城市的代码:http://blog.csdn.net/anbowing/article/details/21936293
 •访问天气接口,获取数据:”http://www.weather.com.cn/adat/sk/“.$city_id.”html”

下面的是几个很好的接口网站。
 •天气API接口大全 

实现代码

代码的实现,分为三步。照应我们之前的逻辑来写即可。
 •获取客户端ip对应的城市 

<?php
header("Content-Type:text/json;charset=utf-8");
// ajax 自身特性决定其不能跨域请求,所以使用php的代理模式来实现垮与请求
//$url = 'http://www.weather.com.cn/adat/sk/101010100.html';
// 1.获取文本内容信息;2获取url对应的数据
//$data = file_get_contents($url);
//echo $data;
/////////////////////////////////////思路一
// ip-->>城市----->>>城市代码----->>>> 天气信息
// 获取ip对应的城市信息,以及编码 http://ip.taobao.com/service.getIpInfo.php?ip=60.205.8.179
// 通过编码获得天气信息 http://www.weather.com.cn/adat/sk/编码.html
$client_ip = "60.205.8.179";//$_SERVER['REMOTE_ADDR'];
$url = "http://ip.taobao.com/service/getIpInfo.php?ip="."$client_ip";
$result = file_get_contents($url);
echo $result;
/////////////////////////////////////思路二
?>

在客户端我们就可以看到

<script>
function getcitycode(){
 var xhr = new XMLHttpRequest();
 xhr.onreadystatechange = function(){
  if(xhr.readyState==4){
   //alert(xhr.responseText);
   eval('var citycode='+xhr.responseText);
   alert(citycode.data.city);
  }
 }
 xhr.open('get','./getcityid.php');
 xhr.send(null);
}
</script>

 •再向服务器请求一下城市代码,传给天气接口即可。 

<?php
$city_id = $_GET['city'];
//print_r($GET);
调用数据库代码逻辑,查找到对应的城市的城市编码
只需要从我们实现存储好的城市表中警醒查找即可。而且城市编码的表基本上不发生变化,我们可以稳定的使用。
$weather_url = "http://www.weather.com.cn/adat/sk/".$city_id."html";
$weather = file_get_contents($weather_url);
echo $weather;
?>

前端完整代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>获取天气信息</title>
<script>
function getinfo(){
var ajax = new XMLHttpRequest();
ajax.onreadystatechange = function(){
 if(ajax.readyState==4){
  alert(ajax.responseText);
  eval("var data=" + ajax.responseText);
  alert(data);
  document.getElementById("city").innerHTML =data.weatherinfo.city;
  document.getElementById("cityid").innerHTML =data.weatherinfo.cityid;
  document.getElementById("temp").innerHTML =data.weatherinfo.temp;
  document.getElementById("WD").innerHTML =data.weatherinfo.WD;
  document.getElementById("WS").innerHTML =data.weatherinfo.WS;
  document.getElementById("SD").innerHTML =data.weatherinfo.SD;
  document.getElementById("time").innerHTML =data.weatherinfo.time;
 }
}
ajax.open('get','./getinfo.php');
ajax.send(null);
}
</script>
</head>
<body>
<h3>获取城市代码</h3>
<button type="button" onclick="getcitycode()">获取城市代码</button>
<br />
<script>
function getcitycode(){
 var xhr = new XMLHttpRequest();
 xhr.onreadystatechange = function(){
  if(xhr.readyState==4){
   //alert(xhr.responseText);
   eval('var citycode='+xhr.responseText);
   alert(citycode.data.city);
  }
 }
 xhr.open('get','./getcityid.php');
 xhr.send(null);
}
</script>
<span id="cityid"></span>
<h3>点击按钮获取天气信息</h3>
<button name="getinfo" onclick="getinfo()">获取</button>
<div>
<span>城市名称</span><span id="city"></span><br />
<span>城市代码</span><span id="cityid"></span><br />
<span>当前温度</span><span id="temp"></span><br />
<span>风向</span><span id="WD"></span><br />
<span>风速</span><span id="WS"></span><br />
<span>湿度</span><span id="SD"></span><br />
<span>更新时间</span><span id="time"></span><br />
</div>
</body>
</html>

总结

在自己的网站上添加一个天气预报功能,其实并不难。也许还有更为简单的方式,这里就算是一个抛砖引玉的过程吧。

标签:PHP,ajax,天气
0
投稿

猜你喜欢

  • 仿微博字符限制效果实现代码

    2024-04-28 09:51:18
  • 使用Postman测试需要授权的接口问题

    2022-10-18 15:14:23
  • Go gRPC服务客户端流式RPC教程

    2023-07-16 06:08:55
  • python爬取网易云音乐热歌榜实例代码

    2023-12-19 09:14:32
  • 使用Keras构造简单的CNN网络实例

    2023-08-23 04:38:21
  • 浅谈vue项目利用Hbuilder打包成APP流程,以及遇到的坑

    2024-04-10 13:46:11
  • Python程序实现向MySQL存放图片

    2022-12-02 13:34:38
  • SQL Server误区30日谈 第12天 TempDB的文件数和需要和CPU数目保持一致

    2024-01-21 19:07:29
  • pytorch中的model.eval()和BN层的使用

    2023-09-21 17:06:10
  • pymssql数据库操作MSSQL2005实例分析

    2024-01-15 02:23:42
  • php $_SESSION会员登录实例分享

    2024-06-05 09:47:58
  • 用pushplus+python监控亚马逊到货动态推送微信

    2022-02-12 16:34:11
  • 详解基于python-django框架的支付宝支付案例

    2023-01-07 12:30:22
  • vue全局自定义指令-元素拖拽的实现代码

    2024-04-30 08:46:16
  • django模板结构优化的方法

    2023-11-12 11:57:02
  • 浅谈MySQL数据库崩溃(crash)的常见原因和解决办法

    2024-01-17 12:52:58
  • mysql中in条件使用字符串方式

    2024-01-28 02:24:55
  • Tensorflow2.4从头训练Word Embedding实现文本分类

    2023-05-22 20:03:17
  • Golang调用FFmpeg转换视频流的实现

    2024-04-30 10:01:43
  • GoLang中Strconv库有哪些常用方法

    2024-05-09 10:11:17
  • asp之家 网络编程 m.aspxhome.com