当前位置:   article > 正文

【最新鸿蒙应用开发】——使用axios请求?拦截器如何使用?_鸿蒙拦截器

鸿蒙拦截器

鸿蒙应用开发中如何发送Axios请求?

我们先进行简单的代码测试,如下图:

1、导入Axios包

鸿蒙当中使用axios需要安装,在控制台输入  ohpm install @ohos/axios

安装完成后在oh-package.json5文件中查看是否安装成功:

2、设置拦截器

  1. import { promptAction } from '@kit.ArkUI';
  2. import axios, { AxiosError, AxiosResponse, InternalAxiosRequestConfig } from '@ohos/axios';
  3. import { BASE_URL } from '../constants';
  4. /**
  5. * 后端响应基本类型«result»
  6. */
  7. export interface ServiceResponse<T> {
  8. /** 请求码,200为成功,300及300以上为请求失败 */
  9. code: number;
  10. msg: string;
  11. resTime: Date;
  12. result: T;
  13. tips: string;
  14. }
  15. // type 类型别名,保存类型(类似变量声明的关键词 const let)
  16. // 三层对象嵌套:Axios 响应类型 > 后端响应基本类型 > 不同接口响应的类型
  17. export type AxiosResponseData<Result = null> = AxiosResponse<ServiceResponse<Result>, null>
  18. // 创建实例
  19. export const axiosInstance = axios.create({
  20. baseURL: BASE_URL, // 请求基地址
  21. timeout: 1000 * 20 // 请求超时时间
  22. })
  23. // --- 从官方文档中复制过来拦截器的基本结构,把 axios 修改成 axiosInstance ---
  24. // 拦截器分为两部分:请求拦截器、响应拦截器
  25. // 添加请求拦截器
  26. axiosInstance.interceptors.request.use((config: InternalAxiosRequestConfig) => {
  27. // 对请求数据做点什么
  28. return config;
  29. }, (error: AxiosError) => {
  30. // 对请求错误做些什么
  31. return Promise.reject(error);
  32. });
  33. // 添加响应拦截器
  34. axiosInstance.interceptors.response.use((response: AxiosResponseData) => {
  35. // 对响应数据做点什么,then 响应成功时
  36. // response.data.code 是服务器的业务状态码
  37. if (response.data.code !== 200) {
  38. // 把后端响应的错误信息,通过轻提示,提醒用户
  39. promptAction.showToast({ message: response.data.msg })
  40. // 主动返回错误,避免 await 后续代码执行
  41. return Promise.reject(response.data.msg)
  42. }
  43. return response;
  44. }, (error: AxiosError) => {
  45. // 对响应错误做点什么,catch 响应失败时
  46. if (error.message.includes('401')) {
  47. // 401 Unauthorized 身份验证出问题了 token
  48. promptAction.showToast({ message: '登录信息无效,请重新登录' })
  49. } else if (error.message.includes('404')) {
  50. // 404 Not Found 服务器找不到请求的资源
  51. promptAction.showToast({ message: '无法识别的 URL,请检查' })
  52. } else {
  53. promptAction.showToast({ message: '未知网络请求错误' })
  54. }
  55. // 未知错误
  56. return Promise.reject(error);
  57. });

3、测试

  1. import { AxiosResponse } from '@ohos/axios';
  2. import { postUserLoginPasswdAPI } from '../../api';
  3. import { axiosInstance } from '../../common/utils';
  4. /**
  5. * 账号密码登录模型
  6. */
  7. export interface PostUserLoginPasswdData {
  8. /** 用户密码 */
  9. passwd?: string;
  10. /** 用户手机号 */
  11. phone?: string;
  12. }
  13. /**
  14. * 数据响应模型«result»
  15. */
  16. export interface ServiceResponse<T> {
  17. /**
  18.   * 请求码,200为成功,300及300以上为请求失败
  19.   */
  20. code: number;
  21. /**
  22.   * 响应信息
  23.   */
  24. msg: string;
  25. /**
  26.   * 响应时间
  27.   */
  28. resTime: Date;
  29. result: T;
  30. tips: string;
  31. }
  32. /**
  33. * 用户登录信息
  34. */
  35. export interface ServiceResponseResult {
  36. /**
  37.   * 访问token,有效期1小时
  38.   */
  39. accessToken?: string;
  40. /**
  41.   * 头像
  42.   */
  43. avatar?: string;
  44. /**
  45.   * 昵称
  46.   */
  47. nickname?: string;
  48. /**
  49.   * 续期token,有效期30天
  50.   */
  51. renewalToken?: string;
  52. }
  53. // type 类型别名,保存类型(类似变量声明的关键词 const let)
  54. type AxiosResponseData<Result> = AxiosResponse<ServiceResponse<Result>, null>
  55. // 创建一个 axios 实例,内部做一些 axios 通用配置,如 baseURL(基础地址,自动拼接)
  56. // export const axiosInstance = axios.create({
  57. //   baseURL: BASE_URL // 基础地址
  58. // })
  59. @Entry
  60. @Component
  61. struct AxiosTestPage {
  62. @State avatar: string = ''
  63. build() {
  64.   Navigation() {
  65.     Scroll() {
  66.       Column({ space: 10 }) {
  67.         Button('发送请求-约束请求参数格式')
  68.           .onClick(async () => {
  69.             // axios.post<参数1, 参数2, 参数3> 范型
  70.             // 范型参数1: 没啥用,会被第二个参数覆盖
  71.             // 范型参数2: 用于指定后端返回数据的类型(重要)
  72.             // 范型参数3: 请求参数
  73.             const res = await axiosInstance.post<null,
  74.             AxiosResponseData<ServiceResponseResult>,
  75.             PostUserLoginPasswdData>
  76.             (
  77.               '/user/login/passwd', // 小括号参数1:接口地址地址
  78.               { phone: '120666666', passwd: '888itcast.CN764%...' } // 小括号参数2:请求参数,可通过范型约束类型
  79.             )
  80.             AlertDialog.show({ message: JSON.stringify(res, null, 2) })
  81.             if (res.data.code === 200) {
  82.               this.avatar = res.data.result.avatar || ''
  83.             }
  84.           })
  85.         Button('发送请求2-测试错误')
  86.           .onClick(async () => {
  87.             const res = await axiosInstance.post<null,
  88.             AxiosResponseData<ServiceResponseResult>,
  89.             PostUserLoginPasswdData>
  90.             (
  91.               '/user/login/passwd', // 接口地址地址
  92.               { phone: '1123', passwd: '111' } // 请求参数,可通过范型约束类型
  93.             )
  94.             this.avatar = res.data.result.avatar || ''
  95.           })
  96.         Button('发送请求3-测试错误')
  97.           .onClick(async () => {
  98.             const res = await axiosInstance.post<null,
  99.             AxiosResponseData<ServiceResponseResult>,
  100.             PostUserLoginPasswdData>
  101.             (
  102.               '/user/login/111', // 接口地址地址
  103.               { phone: '120666666667', passwd: '888itcast.CN764%...' } // 请求参数,可通过范型约束类型
  104.             )
  105.             this.avatar = res.data.result.avatar || ''
  106.           })
  107.         Button('发送请求4-调用素材的接口')
  108.           .onClick(async () => {
  109.             // 调用素材中封装好的接口
  110.             const res = await postUserLoginPasswdAPI({
  111.               phone: '120666666667',
  112.               passwd: '888itcast.CN764%...'
  113.             })
  114.             this.avatar = res.data.result.avatar || ''
  115.           })
  116.         Image(this.avatar)
  117.           .width(200)
  118.       }
  119.       .constraintSize({ minHeight: '100%' })
  120.     }
  121.     .width('100%')
  122.     .height('100%')
  123.   }
  124.   .title('@ohos/axios 网络请求库')
  125.   .titleMode(NavigationTitleMode.Mini)
  126. }
  127. }

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

闽ICP备14008679号