码迷,mamicode.com
首页 > 其他好文 > 详细

Vue 封装网络工具类

时间:2020-10-09 21:26:06      阅读:26      评论:0      收藏:0      [点我收藏+]

标签:ann   ext   com   api   time   vue   网络工具   axios   err   

1.创建nextwork.js

import axios from ‘axios‘

// 进行一些全局配置

axios.defaults.baseURL = ‘http://127.0.0.1:3000‘
axios.defaults.timeout = 3000

// 封装组件的get/post方法

export default {
  get: function (path = ‘‘, data = {}) {
    return new Promise(function (resolve, reject) {
      axios.get(path, {
        params: data
      })
        .then(function (response) {
          resolve(response)
        })
        .catch(function (error) {
          reject(error)
        })
    })
  },
  post: function (path = ‘‘, data = {}) {
    return new Promise(function (resolve, reject) {
      axios.post(path, data)
        .then(function (response) {
          resolve(response)
        })
        .catch(function (error) {
          reject(error)
        })
    })
  }
}

  2.创建index.js

import NextWork from ‘./nextwork‘

export const getBanner = () => NextWork.get(‘banner‘)

  3.测试网络工具类

<script>
import { getBanner } from ‘@/api‘

export default {
  name: ‘Recommend‘,
  created () {
    getBanner().then(function (data) {
      console.log(data)
    })
      .catch(function (err) {
        console.log(err)
      })
  }
}
</script>

  

 

Vue 封装网络工具类

标签:ann   ext   com   api   time   vue   网络工具   axios   err   

原文地址:https://www.cnblogs.com/WorldEye/p/13786523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!