Vue踩坑之axios
Posted 狂奔的胖切肯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue踩坑之axios相关的知识,希望对你有一定的参考价值。
使用vue cli ui,依赖vue-axios,axios。
引入:
import Vue from ‘vue‘ import axios from ‘axios‘ import VueAxios from ‘vue-axios‘ Vue.use(VueAxios, axios)
使用:
Vue.axios.get(api).then((response) => { console.log(response.data) }) //或 this.axios.get(api).then((response) => { console.log(response.data) }) //或 this.$http.get(api).then((response) => { console.log(response.data) })
以上是关于Vue踩坑之axios的主要内容,如果未能解决你的问题,请参考以下文章
framework7-vue 踩坑之跳转之后之前的页面没有被销毁
Webpack5 踩坑之(html-webpack-plugin)
Vue踩坑之 el-select下拉框多选,选择后赋值成功,输入框不显示选中的值
Vue踩坑之 el-select下拉框多选,选择后赋值成功,输入框不显示选中的值