vue中使用axios

Posted hackyo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中使用axios相关的知识,希望对你有一定的参考价值。

1.安装axios

npm:

$ npm install axios -S

cdn:

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

2.配置axios

在项目中新建api/index.js文件,用以配置axios

api/index.js

import axios from ‘axios‘;

let http = axios.create({
  baseURL: ‘http://localhost:8080/‘,
  withCredentials: true,
  headers: {
    ‘Content-Type‘: ‘application/x-www-form-urlencoded;charset=utf-8‘
  },
  transformRequest: [function (data) {
    let newData = ‘‘;
    for (let k in data) {
      if (data.hasOwnProperty(k) === true) {
        newData += encodeURIComponent(k) + ‘=‘ + encodeURIComponent(data[k]) + ‘&‘;
      }
    }
    return newData;
  }]
});

function apiAxios(method, url, params, response) {
  http({
    method: method,
    url: url,
    data: method === ‘POST‘ || method === ‘PUT‘ ? params : null,
    params: method === ‘GET‘ || method === ‘DELETE‘ ? params : null,
  }).then(function (res) {
    response(res.data);
  }).catch(function (err) {
    response(err);
  })
}

export default {
  get: function (url, params, response) {
    return apiAxios(‘GET‘, url, params, response)
  },
  post: function (url, params, response) {
    return apiAxios(‘POST‘, url, params, response)
  },
  put: function (url, params, response) {
    return apiAxios(‘PUT‘, url, params, response)
  },
  delete: function (url, params, response) {
    return apiAxios(‘DELETE‘, url, params, response)
  }
}

这里的配置了POST、GET、PUT、DELETE方法。并且自动将JSON格式数据转为URL拼接的方式

同时配置了跨域,不需要的话将withCredentials设置为false即可

并且设置了默认头部地址为:http://localhost:8080/,这样调用的时候只需写访问方法即可

3.使用axios

首先在main.js中引入方法

import Api from ‘./api/index.js‘;
Vue.prototype.$api = Api;

然后在需要的地方调用即可

this.$api.post(‘user/login.do(地址)‘, {
    "参数名": "参数值"
}, response => {
     if (response.message === undefined) {
        this.$message.success(response);\\请求成功,response为返回参数
     } else {
        this.$message.error(response.message);\\请求失败,response为失败信息
     }
});

以上是关于vue中使用axios的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段14——Vue的axios网络请求封装

vue中axios请求成功了如何把数据渲染到页面上?

回归 | js实用代码片段的封装与总结(持续更新中...)

Vue-Select:如何将此 fetch() 代码转换为使用 axios?

如何在 Vue (Typescript) 中使用 axios?

vue项目axios的使用实例详解