前端常用技术汇总vue 基础

Vue使用Axios实现http请求以及解决跨域问题

2018-12-06  本文已影响202人  李亚_45be


Axios 是一个基于 promise 的 HTTP 库,可以用在浏览器和 node.js 中。Axios的中文文档以及github地址如下:

中文:https://www.kancloud.cn/yunye/axios/234845github:https://github.com/axios/axios

vue路由文档:https://router.vuejs.org/zh/

一、安装Axios插件

npm install axios --save

二、在main.js中引入Axios库

import Axios from "axios"

//将axios挂载到原型上

Vue.prototype.$axios = Axios;

//配置全局的axios默认值(可选)

axios.defaults.baseURL = 'https://api.example.com';

axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;

axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';

三、使用get方式的http请求

this.$axios.get("请求url",{param:{}})

          .then(function(response){

                  console.info(response.data);

                })

          .catch(function(error){

                  console.info(error);

                });

四、使用post方式的http请求

this.$axios.post("请求路径",{})

          .then(function(response){

                  console.info(response.data);

                })

          .catch(function(error){

                  console.info(error);

                });

注意:使用上述post方式提交参数的时候存在问题,axios中post的请求参数格式是form-data格式。而上述json串的格式为x-www-form-urlencoded格式

例如:

form-data:?name="zhangsan"&age=10 

x-www-form-urlencoded:{name:"zhangsan",age:10}

此时我们需要将数据格式作转换,在当前页面引入第三方库qs

import qs from "qs"

此时上述参数改为:

this.$axios.post("请求路径",qs.stringify({}))

          .then(function(response){

                  console.info(response.data);

                })

          .catch(function(error){

                  console.info(error);

                });

五、Axios的拦截器

  拦截器在main.js中进行配置,配置如下:

// 添加请求拦截器

axios.interceptors.request.use(function (config) {

    // 在发送请求之前做些什么

    return config;

  }, function (error) {

    // 对请求错误做些什么

    return Promise.reject(error);

  });

// 添加响应拦截器

axios.interceptors.response.use(function (response) {

    // 对响应数据做点什么

    return response;

  }, function (error) {

    // 对响应错误做点什么

    return Promise.reject(error);

  });

基于以上的拦截器,我们可以对请求的数据或者是响应的数据做些处理,就拿上面post方式的请求参数格式举个例子,通过拦截器我们可以对所有的post方式的请求参数在发出请求之前作出转换:

import qs from "qs"

// 添加请求拦截器

axios.interceptors.request.use(function (config) {

    // 参数格式转换

    if(config.method=="post"){

        config.data = qs.stringify(config.data);

    }

    return config;

  }, function (error) {

    // 对请求错误做些什么

    return Promise.reject(error);

  });

  因此基于拦截器我们在post请求的时候可以直接使用from-data的格式,不需要每次都编码转换

 六、前端跨域解决方案(了解)

描述:由于使用vue脚手架的目的就是使前后端分离,前端请求后端的数据在测试阶段设计到跨域请求问题,在前端中我们可以通过如下配置解决跨域请求问题。

  第一步(在config文件夹下的index.js中进行如下修改)

proxyTable:{

    "/api":{

        target:"后端提供服务的前缀地址",

        changeOrigin:true,

        pathRewrite:{

              '^/api':''

        }

    }

},

  第二步(在main.js中添加一个代理)

Vue.prototype.HOST='/api'

 再进行请求的时候只需要使用url = this.HOST+"请求的Mappering地址"即可。

(注意:在上述过程中修改了config下的配置文件,服务需要重新启动,才能生效)

例如:

1:打开config/index.js

module.exports{

    dev: {

    }

}

在这里面找到proxyTable{},改为这样:

proxyTable: {

      '/api': {

        target: 'http://121.41.130.58:9090',//设置你调用的接口域名和端口号 别忘了加http

        changeOrigin: true,

        pathRewrite: {

          '^/api': ''//这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可

        }

      }

    }

2:在需要调接口的组件中这样使用:

axios.post('/api/yt_api/login/doLogin',postData)

    .then(function (response) {

        console.log(1)

        console.log(response);

    })

    .catch(function (error) {

        console.log(error);

    })

 注意:原接口:http://http://121.41.130.58:9090/yt_api/login/doLogin

页面调用:http://localhost:8081/api/yt_api/login/doLogin ——这里多了一个/api/不是多余的,不要删

七 axios传参

1:Vue官方推荐组件axios默认就是提交 JSON 字符串,所以我们要以json字符串直接拼接在url后面的形式,直接将json对象传进去就行了

let postData = {

companyCode:'tur',

userName:'123456789123456789',

password:'123456'

}

axios.get('/api/yt_api/login/doLogin',{

params: {

...postData,

}

})

.then(function (response) {

console.log(1)

console.log(response);

})

.catch(function (error) {

console.log(error);

});

这里我们将postData这个json对象传入到post方法中,页面中的形式为:

2:以key:val的形式传参

let postData = qs.stringify({

    companyCode:'tur',

    userName:'123456789123456789',

    password:'123456'

})

我们需要对这个json对象操作,这里的qs你需要先安装

1npm install qs

再导入

1import qs from 'qs'

面中的形式为:

上一篇下一篇

猜你喜欢

热点阅读