当前位置:
首页 > temp > python入门教程 >
-
axios在Vue中的使用
1.首先在cmd中找到你的项目,
然后执行以下命令,安装一下axios
1 cnpm install axios --save //添加axios模块
2 cnpm install qs --save //添加qs模块(用于处理post请求的参数解析)
2.添加成功后,在package.json文件中就可以看到:
1 "dependencies": { 2 "axios": "^0.19.2", 3 "core-js": "^3.6.5", 4 "qs": "^6.9.4", 5 "vue": "^2.6.11", 6 "vue-router": "^3.2.0", 7 "vuex": "^3.4.0" 8 },
3.在main.js文件中导入这些模块
1 import axios from 'axios' 2 import qs from 'qs' 3 //设置axios的基础url部分 4 axios.defaults.baseURL = 'http://api.tianapi.com/'; 5 //将axios挂载到vue实例上,使用时就可以 this.$axios 这样使用了 6 Vue.prototype.$axios = axios; 7 //将qs挂载到vue实例上,使用时就可以 this.$qs 这样使用了 8 Vue.prototype.$qs = qs;
4.Vue中axios的三种使用方法
1 Vue.axios.get(api).then((response) => { 2 console.log(response.data) 3 }) 4 5 this.axios.get(api).then((response) => { 6 console.log(response.data) 7 }) 8 9 this.$http.get(api).then((response) => { 10 console.log(response.data) 11 })
5.在.vue文件中书写代码(1)
<template> <div class="about"> <h1>全国省市疫情</h1> <table> <tr> <th>省市</th> <th>累计确诊</th> <th>累计治愈</th> <th>现有确诊</th> <th>累计死亡</th> </tr> <tr v-for="item in yq.newslist"> <td></td> <td></td> <td></td> <td></td> <td></td> </tr> </table> </div> </template> <script> export default{ name:'About', data(){ return { yq:{} } }, created() { /* //get方式 this.$axios.get('txapi/ncovcity/index',{ params:{ key:'自己的key' } }).then(function(response) { console.log(response.data); }).catch(function(error) { console.log(error); }); */ //post方式 this.$axios.post('txapi/ncovcity/index',this.$qs.stringify({ key:'e0a32a8ea4275e9dbe2628d03bb91f3e' })).then((response)=> { this.yq = response.data; console.log(this.yq); }).catch((error)=> { console.log(error); }); } } </script> <style scoped> table { width: 100%; text-align: center; border-bottom: solid 2px #DDD; /* 合并边框 */ border-collapse: collapse; } td,th { border-bottom: solid 1px #DDD; height: 40px; } </style>
(2)
1 <template> 2 <div> 3 <el-table :data="news"> 4 <el-table-column prop="id" label="id"></el-table-column> 5 6 <el-table-column prop="name" label="name"></el-table-column> 7 8 <el-table-column prop="psw" label="psw"></el-table-column> 9 </el-table> 10 </div> 11 </template> 12 13 <script> 14 export default { 15 data() { 16 return { 17 18 news:[] 19 } 20 }, 21 created(){ 22 let than=this 23 this.$axios({ 24 methon:'post', 25 url:'http://localhost:8888/pro0727/hello' 26 }).then(function(response){ 27 console.log(response); 28 than.news=response.data 29 }) 30 } 31 } 32 </script> 33 34 <style> 35 </style>
来源:https://www.cnblogs.com/zmdhh/p/15072497.html
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数