当前位置:   article > 正文

Typescript封装Axios——响应结果的类型处理_response: () typescript

response: () typescript

5、响应结果的类型处理

在modules/entire.ts中已经能够获得响应的数据,目前获得的数据是没有数据的类型的,因此什么操作也做不了,因此应配置其类型

interface IHighScoreData {
   
  list: any[];
  subtitle: string;
  title: string;
  type: string;
  _id: string;
}

// 将类型传入request
hdRequest2
  .request<IHighScoreData>({
   
    url: "/home/highscore",
    interceptors: {
   
      requestSuccessFn: (config) => {
   
        console.log("/home/highscore请求成功的拦截");
        return config;
      },
      responseSuccessFn: (res) => {
   
        console.log("/home/highscore响应成功的拦截");
        console.log(res);
        return res;
      },
    },
  })
  .then((res) => {
   
    // 9、这里结果就能使用IHighScoreData类型了
    console.log(res._id);
  });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

对于request/index.ts

import axios, {
    AxiosInstance, AxiosRequestConfig
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/285712
推荐阅读
相关标签
  

闽ICP备14008679号