查看“Vue 网络应用 天知道 回车查询”的源代码
←
Vue 网络应用 天知道 回车查询
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看和复制此页面的源代码。
https://www.bilibili.com/video/BV12J411m7MG/?p=28 === 功能分析 === # 按下回车(<u>v-on</u> <u>.enter</u>) # 查询数据(<u>axios</u> <u>接口</u> <u>v-model</u>) # 渲染数据(<u>v-for</u> <u>数组</u> <u>that</u>) === 接口 === 请求地址:http://wthrcdn.etouch.cn/weather_mini 请求方法:get 请求参数:city(查询的城市名) 响应内容:天气信息 === 完整代码示例 === <syntaxhighlight lang="html"> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>天知道 回车查询</title> </head> <body> <div class="wrap" id="app"> <div class="search_form"> <div class="logo"><img src="img/logo.png" alt="logo"></div> <div class="form_group"> <input type="text" v-model="city" @keyup.enter="searchWeather" class="input_txt" placeholder="请输入查询的城市"> <button class="input_sub">搜 索</button> </div> <div class="hotkey"> <a href="javascript:;">北京</a> <a href="javascript:;">上海</a> <a href="javascript:;">广州</a> <a href="javascript:;">深圳</a> </div> </div> <ul class="weather_list"> <li v-for="item in weatherList"> <div class="info_type"><span class="iconfont">{{ item.type }}</span></div> <div class="info_temp"> <b>{{ item.low }}</b> ~ <b>{{ item.high }}</b> </div> <div class="info_date"><span>{{item.date}}</span></div> </li> </ul> </div> <!-- 开发环境版本,包含了有帮助的命令行警告 --> <script src="vue.js"></script> <script src="axios.min.js"></script> <script> /* 请求地址:http://wthrcdn.etouch.cn/weather_mini 请求方法:get 请求参数:city(城市名) 响应内容:天气信息 1.点击回车 2.查询数据 3.渲染数据 */ var app = new Vue({ el:"#app", data:{ city:'', weatherList:[ // { // type:"测试晴", // low:"28", // high:"30", // date:"天" // }, // { // type:"测试晴", // low:"28", // high:"30", // date:"天" // } ] }, methods:{ searchWeather: function(){ console.log("天气查询"); console.log(this.city); // 调用接口 var that = this; // axios.get('http://wthrcdn.etouch.cn/weather_mini?city=' + this.city).then(function(){ axios.get('https://mcs.zijieapi.com/list').then(function(response){ // console.log(response); // console.log(response.data.data.forecast); // debugger; console.log(response); // that.weatherList = response.data.data.forecast; var testData = [ { type:"测试晴", low:"28", high:"30", date:"天" }, { type:"测试晴", low:"28", high:"30", date:"天" } ]; that.weatherList = testData; }).catch(function(err){ }) }//end }//end method }); </script> </body> </html> </syntaxhighlight> === 总结和注意 === * 应用的逻辑代码建议和页面 <u>分离</u>,使用 <u>单独</u> 的js文件编写 * <u>axios</u> 回调函数中 <u>this</u> 指向改变了,需要额外的保存一份 * 服务器返回的数据比较复杂时,获取的时候需要注意 <u>层级</u> 结构
返回至
Vue 网络应用 天知道 回车查询
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
Spring Boot 2 零基础入门
Spring Cloud
Spring Boot
设计模式之禅
VUE
Vuex
Maven
算法
技能树
Wireshark
IntelliJ IDEA
ElasticSearch
VirtualBox
软考
正则表达式
程序员精讲
软件设计师精讲
初级程序员 历年真题
C
SQL
Java
FFmpeg
Redis
Kafka
MySQL
Spring
Docker
JMeter
Apache
Linux
Windows
Git
ZooKeeper
设计模式
Python
MyBatis
软件
数学
PHP
IntelliJ IDEA
CS基础知识
网络
项目
未分类
MediaWiki
镜像
问题
健身
国债
英语
烹饪
常见术语
MediaWiki帮助
工具
链入页面
相关更改
特殊页面
页面信息