前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >vue + axios 调取天气api

vue + axios 调取天气api

作者头像
kirin
发布2020-05-09 15:55:59
1.9K0
发布2020-05-09 15:55:59
举报
文章被收录于专栏:Kirin博客Kirin博客
代码语言:javascript
复制
***
 <!DOCTYPE html>
 <html lang=”en”>
 <head>
 <meta charset=”UTF-8″>
 <script src=”https://cdn.jsdelivr.net/npm/vue/dist/vue.js”></script>
 <script src=”https://unpkg.com/axios/dist/axios.min.js”></script>
 <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
 <title>天气知道天气查询</title>
 </head>
 <body>
 <div id=”dd”>
 <input type=”text” v-model=’city’ @keyup.enter=’seraec’><input type=”button” value=’搜索’ @click=’seraec’>
 <a href=”” @click=”ge(‘广州’)”>广州</a>
 <ul v-for=’item in ser.forecast’>
 <li >
 <p>{{item.date}}</p>
 <p>{{item.low}}~{{item.high}}</p>
 <p>{{item.fengxiang}}</p>
 <p>{{item.type}}</p>
 </li>
 </ul>
 </div>
 <!– 接口地址 http://wthrcdn.etouch.cn/weather_mini –>
 </body>
 <script>
 var app=new Vue({
 el:’#dd’,
 data:{
 city:”,
 ser:[],
 },
 methods:{
 seraec:function(){
 var th=this;
console.log(this.city);
 axios.get(‘http://wthrcdn.etouch.cn/weather_mini?city=’+ this.city)
 .then(function(response){
 console.log(response.data.data.forecast)
 th.ser=response.data.data;
 console.log(th.ser)
},function(err){
 console.log(err)
})
},
 ge:function(city){
 this.city=city;
 this.seraec();
 },
 },
 })
 </script>
 </html>
 ***
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-04-14 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档