# 安装
根目录运行
~~~
npm install axios -S
~~~
# 配置
在src/main.js配置 axios
导入 axios 并在 new Vue()中配置
~~~
import axios from '../node_modules/axios'
Vue.prototype.$axios = axios;
new Vue({
el: '#app',
router,
store,
axios,
components: { App },
template: '<App/>'
})
~~~
简单使用:
~~~
.then 里是后台返回结果
.catch 里是网络错误或后台服务器出bug.then方法里出错等等
get方式
this.$axios.get('/user', {
params: {
数据
}
})
.then(function (response) {
})
.catch(function (error) {
});
post方式
this.$axios.post('/user' , user)
.then(function (response) {
})
.catch(function (error) {
});
~~~
vue 中配置跨域访问后台
~~~
proxyTable: {
'/api': {
target: 'http://127.0.0.1:18080', // 后台访问地址
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
~~~
![](https://box.kancloud.cn/0776f0ba98a82e52441fd0267b15a38c_1091x568.png)
配置后可直接在npm run dev 时直接访问后台地址
前缀比真实后台是多了个 /api ,就是
~~~
this.$axios.post('/api/login/login', user)
.then(function (response) {
})
.catch(function (error) {
});
~~~
- 笔记内容来源
- 你不知道的JavaScript上
- vue
- 环境搭建
- node和npm安装配置
- 安装vue-cli并初始化vue项目
- 安装配置elementUI
- vuex安装配置
- axios安装配置
- main.js
- vue基础入门
- vue-router介绍
- vuex
- vue 原理学习源码学习
- js正则处理v-bind和语法
- 双向绑定
- 虚拟dom
- mvvm和render函数
- vue工作项目笔记
- elementUI 表格分页多选记忆功能
- elementUI表格展开一行
- keepAlive
- vue整合ckeditor5
- this.$router.push 内打开新窗口
- java修改上传图片的权限
- 兼容ie11
- 生成二维码
- base64图片下载(兼容IE10)
- vue新手引导程序intro.js
- vue插件 devtools
- vue刷新当前页面
- vue 锚点导航
- axios
- axios与springmvc
- vue-cli 3搭建vue
- git
- git常用命令
- 正则表达式
- 实例demo
- 1
- 新手引导页
- 纯css3从左显示下划线动画导航菜单
- 纯css3从中间显示下划线动画导航菜单
- css显示密码
- 倒计时时钟
- 星星评分
- 按钮悬停效果
- 步骤条
- css动画按钮
- input标题获得焦点上移
- css图片放大
- css镜像导航栏
- js
- 通信
- for in 和 for of
- 前端安全问题
- Promise
- 掘金冴羽学习笔记
- 模拟call
- 模拟bind
- 闭包
- 1 作用域
- 2 执行上下文栈
- 3 变量对象
- 4 作用域链
- 5 this
- 面向对象
- 基础知识点
- 渲染机制
- 其他
- 判断是否为数组
- http
- css
- 基础知识
- css阴影