1. 程式人生 > >vue專案中axios請求網路介面封裝

vue專案中axios請求網路介面封裝

每個專案網路請求介面封裝都是很重要的一塊,第一次做Vue專案,我們的封裝方法如下:

(1).新建一個js檔案,取名api.js

(2).引入 axios ,mint-UI ,如下圖:

import axios from 'axios'
import {MessageBox, Toast} from 'mint-ui'

axios.defaults.timeout = 50000//預設請求超時時間
axios.defaults.headers = '請求頭'
(3).封裝get方法
export function getHttp (url, params = {}) {
  // 建立動畫mint-ui
  Indicator.open({
    text: '載入中...',
    spinnerType: 'fading-circle'
  })
  return new Promise((resolve, reject) => {
    axios.get(url, {
      params: params
    })
      .then(response => {
        resolve(response.data)
         Indicator.close() // // 關閉動畫
      })
      .catch(err => {
        reject(err)
         Indicator.close() // // 關閉動畫
        MessageBox.alert('message', err)
      })
  })
}
(4).封裝post方法
export function postHttp (url, data = {}) {
  Indicator.open({
    text: '載入中...',
    spinnerType: 'fading-circle'
  })
  return new Promise((resolve, reject) => {
    axios.post(url, data)
      .then(response => {
        if (response.data.status == 1) {
          resolve(response.data)
        } else {
          Toast(response.data.msg)
        }
        Indicator.close() // // 關閉動畫
      }, (err) => {
        reject(err)
        Indicator.close()
      })
  })
}

(5).封裝後方法的使用

在main.js中引入全域性變數

import {getHttp, postHttp} from './config/api'
Vue.prototype.$getHttp = getHttp
Vue.prototype.$postHttp = postHttp

 

    //get網路請求
      this.$getHttp(this.$shopUrl + 'api/product/list',)
        .then((response) => {
          response.result//請求返回資料
       })



    // post網路請求
    
     this.$postHttp(this.$shopUrl + 'api/product/list',)
        .then((response) => {
          response.result//請求返回資料
       })