PHP Ajax JavaScript Json获取天气信息实现代码
要在自己的网站上添加一个天气预报功能,是一个很普通的需求,实现起来也不是很难。今天来介绍几个简单的方法。
使用第三方服务
有这样的一种简单的方式,借助http://www.tianqi.com/plugin/网上的天气服务,可以定制我们的显示形状,实现添加天气预报的功能。
下面给出一个简单的小例子:
间接方式
说是间接的获取天气信息,那是因为对于我们个人而言,是不可能自己发射卫星,或者维护天气预报那么大的计算量的服务的。我们是借助其他网站提供的数据接口来实现的。
思路
由于ajax本身的特点决定了岂不能够跨域请求,所以我们需要借助php来试下代理的功能。具体思路如下:
客户端打开我们的网页根据php获得客户端ip使用第三方服务获取该ip对应的城市编码调用天气接口,根据城市编码来获取天气信息客户端获得服务器返回的数据,并显示到页面上。
使用到的服务
下面列出我们用到的一句常用的接口
•ip转城市:”http://ip.taobao.com/service/getipinfo.php?ip=xxx”
•查看对应的城市的代码:
•访问天气接口,获取数据:”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 JavaScript Json获取天气信息实现代码
-
用一段PHP代码实现获取一言API的信息
-
php 利用Google API 获取当前天气信息代码_PHP教程
-
php下获取Discuz论坛登录用户名、用户组、用户ID等信息的实现代码_php实例
-
php ajax实现无刷新获取天气状态
-
基于tp5小程序登录的实现 demo版本 获取code 返回token 解密微信数据信息 和验证数据来源真实性(包含小程序前端和php后端代码 )
-
php实现的获取网站备案信息查询代码(360)_PHP教程
-
如何获取JQUERY AJAX返回的JSON结果集实现代码_基础知识
-
php实现的获取网站备案信息查询代码(360)
-
PHP 利用AJAX获取网页并输出的实现代码(Zjmainstay)