axios请求

配置环境
  • 有时候直接安装 axios 在 vuecil 会报错
    npm install axios
    npm install --save axios vue-axios
  • 在main.js中配置:
    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)
})
  • 请求本地数据时,需要将数据放在static中
十万伏特の比卡超的axios安装
Wisewrong的vue
山水子农的vue

你可能感兴趣的:(axios请求)