首頁  >  文章  >  web前端  >  vue專案全域使用axios的方法介紹

vue專案全域使用axios的方法介紹

不言
不言轉載
2019-03-20 11:44:352808瀏覽

這篇文章帶給大家的內容是關於vue專案全域使用axios的方法介紹,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

有三種方法:

1.結合vue-axios使用 

首先在主入口檔案main.js中引用

import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios,axios);

之後就可以在元件檔案中的methods裡去使用了

this.axios.get('/api/usrmng')
.then(function (response) {
  console.log(response);
})
.catch(function (error) {
  console.log(error);
});

2. axios 改寫為Vue 的原型屬性

 

首先在主入口檔案main.js中引用,之後掛在vue的原型鏈上

##
import axios from 'axios'
Vue.prototype.$http = axios

在元件中使用

this.$http.get('/api/usrmng')
.then(function (response) {
  console.log(response);
})
.catch(function (error) {
  console.log(error);
});

#3.結合Vuex的action

在vuex的倉庫檔案store.js中引用,使用action新增方法############
import Vue from 'Vue'
import Vuex from 'vuex'

import axios from 'axios'

Vue.use(Vuex)
const store = new Vuex.Store({
  // 定义状态
  state: {
    user: {
      name: 'root'
    }
  },
  actions: {
    // 封装一个 ajax 方法
    login (context) {
      axios({
        method: 'post',
        url: '/user',
        data: context.state.user
      })
    }
  }
})

export default store
#########在元件中傳送請求的時候,需要使用this.$ store.dispatch#########
methods: {
  submitForm () {
     this.$store.dispatch('login')
  }
}
#########這篇文章到這裡就已經全部結束了,更多其他精彩內容可以關注PHP中文網的###JavaScript教程視頻###欄位! ###

以上是vue專案全域使用axios的方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:cnblogs.com。如有侵權,請聯絡admin@php.cn刪除