最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

Ajax通過城市名獲取數(shù)據(jù)

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 19:47:43
文檔

Ajax通過城市名獲取數(shù)據(jù)

Ajax通過城市名獲取數(shù)據(jù):本文給大家分享全國天氣預(yù)報(bào)API Ajax 通過城市名獲取數(shù)據(jù),通過html和js兩部分代碼實(shí)現(xiàn)天氣預(yù)報(bào)效果,輸入城市就會(huì)出現(xiàn)天氣情況,效果非常棒,感興趣的朋友可以參考下預(yù)覽圖(比較簡(jiǎn)單粗糙)聚合數(shù)據(jù)全國天氣預(yù)報(bào)接口:https://www.juhe.cn/docs
推薦度:
導(dǎo)讀Ajax通過城市名獲取數(shù)據(jù):本文給大家分享全國天氣預(yù)報(bào)API Ajax 通過城市名獲取數(shù)據(jù),通過html和js兩部分代碼實(shí)現(xiàn)天氣預(yù)報(bào)效果,輸入城市就會(huì)出現(xiàn)天氣情況,效果非常棒,感興趣的朋友可以參考下預(yù)覽圖(比較簡(jiǎn)單粗糙)聚合數(shù)據(jù)全國天氣預(yù)報(bào)接口:https://www.juhe.cn/docs
本文給大家分享全國天氣預(yù)報(bào)API Ajax 通過城市名獲取數(shù)據(jù),通過html和js兩部分代碼實(shí)現(xiàn)天氣預(yù)報(bào)效果,輸入城市就會(huì)出現(xiàn)天氣情況,效果非常棒,感興趣的朋友可以參考下

預(yù)覽圖(比較簡(jiǎn)單粗糙)

聚合數(shù)據(jù)全國天氣預(yù)報(bào)接口:https://www.juhe.cn/docs/api/id/39

接口地址:http://v.juhe.cn/weather/index
支持格式:json/xml
請(qǐng)求方式:get
請(qǐng)求示例:http://v.juhe.cn/weather/index?format=2&cityname=%E8%8B%8F%E5%B7%9E&key=您申請(qǐng)的KEY
調(diào)用樣例及調(diào)試工具:API測(cè)試工具
請(qǐng)求參數(shù)說明:
名稱 類型 必填 說明
cityname string Y 城市名或城市ID,如:”蘇州”,需要utf8 urlencode
dtype string N 返回?cái)?shù)據(jù)格式:json或xml,默認(rèn)json
format int N 未來6天預(yù)報(bào)(future)兩種返回格式,1或2,默認(rèn)1
key string Y 你申請(qǐng)的key

HTML部分代碼:

<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8" >
<title>天氣預(yù)報(bào)</title>
<script src="jquery-2.1.1.min.js"></script>
<link rel="stylesheet" href="w.css">
<p id="mf_weather">
<script src="w.js"></script>
<button id="search">天氣查詢</button>
<input id="city" type="text" value="tbody">
<p class="ctn">
<p id="mufeng">
</p>
<p id="future"></p>
</p> 
</html>

JavaScript部分:

/*
* 1.輸入城市名
* 2,點(diǎn)擊的時(shí)候發(fā)送請(qǐng)求
* 3.響應(yīng)成功渲染頁面
* */
$('#search').on('click',function(){
var city = $('#city').val()||'北京';
$citycode=urlencode(city);
url='http://v.juhe.cn/weather/index?format=2&cityname='+$citycode+'&key=c82727e986a4f6cfc6ba1984f1f9183a';
$.ajax({url: url,
dataType: "jsonp",
type:"get",
data:{location:city},
success:function(data){
var sk = data.result.sk;
var today = data.result.today;
var futur = data.result.future;
var fut = "日期溫度天氣風(fēng)向";
$('#mufeng').html("<p>" + '當(dāng)前: ' + sk.temp + '℃ , ' + sk.wind_direction + sk.wind_strength + ' , ' + '空氣濕度' + sk.humidity + ' , 更新時(shí)間' + sk.time + "</p><p style='padding-bottom: 10px;'>" + today.city + ' 今天是: ' + today.date_y + ' ' + today.week + ' , ' + today.temperature + ' , ' + today.weather + ' , ' + today.wind + "<p></p>");
$('#future').html("<p>" + '未來: ' + futur[0].temperature+ '℃ , ' + futur[0].weather + futur[0].wind + ' , ' + ' , 更新時(shí)間' + futur[0].week+futur[0].date + "</p><p style='padding-bottom: 10px;'>" + today.city + "<p></p>");
} });
});
function urlencode (str) {
str = (str + '').toString();
return encodeURIComponent(str).replace(/!/g, '%21').replace(/'/g, '%27').replace(/\(/g, '%28').
replace(/\)/g, '%29').replace(/\*/g, '%2A').replace(/%20/g, '+');
}
})

上面是我整理給大家的,希望今后會(huì)對(duì)大家有幫助。

相關(guān)文章:

Ajax動(dòng)態(tài)為下拉列表添加數(shù)據(jù)的實(shí)現(xiàn)方法

完美解決ajax跨域請(qǐng)求下parsererror的錯(cuò)誤

ajax提交手機(jī)號(hào)去數(shù)據(jù)庫驗(yàn)證并返回狀態(tài)值

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

Ajax通過城市名獲取數(shù)據(jù)

Ajax通過城市名獲取數(shù)據(jù):本文給大家分享全國天氣預(yù)報(bào)API Ajax 通過城市名獲取數(shù)據(jù),通過html和js兩部分代碼實(shí)現(xiàn)天氣預(yù)報(bào)效果,輸入城市就會(huì)出現(xiàn)天氣情況,效果非常棒,感興趣的朋友可以參考下預(yù)覽圖(比較簡(jiǎn)單粗糙)聚合數(shù)據(jù)全國天氣預(yù)報(bào)接口:https://www.juhe.cn/docs
推薦度:
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top