axios

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

    拦截请求

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