zoukankan      html  css  js  c++  java
  • iview-admin里面的 axios 给包装了一层数据 libs/axios.js 数据做了一层拦截

    interceptors (instance, url) {
        // 请求拦截
        instance.interceptors.request.use(config => {
          // 添加全局的loading...
          if (!Object.keys(this.queue).length) {
            // Spin.show() // 不建议开启,因为界面不友好
          }
          this.queue[url] = true
          return config
        }, error => {
          return Promise.reject(error)
        })
        // 响应拦截
        instance.interceptors.response.use(res => {
          this.destroy(url)
          const { data, status } = res
          return { data, status }
        }, error => {
          this.destroy(url)
          let errorInfo = error.response
          if (!errorInfo) {
            const { request: { statusText, status }, config } = JSON.parse(JSON.stringify(error))
            errorInfo = {
              statusText,
              status,
              request: { responseURL: config.url }
            }
          }
          addErrorLog(errorInfo)
          return Promise.reject(error)
        })
      }
    config: {transformRequest: {…}, transformResponse: {…}, timeout: 0, xsrfCookieName: "XSRF-TOKEN", adapter: ƒ, …}
    data: {id: "1", username: "2", userpass: "3"}
    headers: {content-type: "application/json; charset=utf-8", content-length: "40"}
    request: MockXMLHttpRequest {custom: {…}, readyState: 4, responseURL: "http://127.0.0.1:8081/api/select.php", status: 200, statusText: "OK", …}
    status: 200
    statusText: "OK"
    __proto__: Object
  • 相关阅读:
    maven常用命令
    div标签width:auto无效
    将本地文件推送到码云
    Spring事件监听讲解
    常用js代码积累
    HTML中块级元素和行内元素的总结和区分
    box-shadow详解
    设置最小宽高的作用
    Java英语词汇表
    标识符
  • 原文地址:https://www.cnblogs.com/pengchenggang/p/11584612.html
Copyright © 2011-2022 走看看