axios

作者: 奈何明月照沟渠 | 来源:发表于2018-05-15 16:30 被阅读0次

antd-mobil loading组件axios请求拦截

import axios from 'axios'
//拦截请求
import {Toast} from 'antd-mobile'
axios.interceptors.request.use(config=>{
    Toast.loading('加载中',0)
    return config
})
//拦截响应
axios.interceptors.response.use(config=>{
    Toast.hide()
    return config
})

请求转发"proxy": "http://localhost:9093"

相关文章

网友评论

      本文标题:axios

      本文链接:https://www.haomeiwen.com/subject/vyqqdftx.html