• axios
    • 发送请求
    • 拦截请求

    axios

    简洁好用的发送请求库,npm install axios --save安装

    • axios.interceptors设置拦截器,比如全局的loading
    • axios.get,post发送请求,返回promise对象

    发送请求

    1. //get请求

    拦截请求

    1. //拦截请求
    2. import axios from 'axios'
    3. axios.interceptors.request.use(
    4. function(config){
    5. //doing
    6. }
    7. )
    8. //拦截响应
    9. axios.interceptors.request.use(
    10. function(config){
    11. //doing
    12. }
    13. )