react axios 优化示例

使用 axios 是 React 项目中非常常见的 HTTP 请求库。为了提升 axios 在 React 中的性能、可维护性和用户体验,我们可以从 代码组织、请求优化 和 用户体验优化 多个角度进行详细的优化。

一、安装与基础配置

安装 axios

npm install axios

创建 Axios 实例

为了更好地管理请求配置和减少重复代码,建议创建 Axios 实例。

axios.js

import axios from "axios";

const axiosInstance = axios.create({
   
  baseURL: "https://api.example.com", // API 的基础路径
  timeout: 10000, // 请求超时时间
  headers: {
   
    "Content-Type": "application/json",
  },
});

// 请求拦截器
axiosInstance.interceptors.request.use(
  (config) => {
   
    // 可以添加认证 token
    const token = localStorage.getItem("token");
    if (token) {
   
      config.headers.Authorization = `Bearer ${
     token}`;
    }
    return config;
  },
  (error) => {
   
    return Promise.reject(error);
  }
);

// 响应拦截器
axiosInstance.interceptors.response.use(
  (response) => {
   
    return response.data; // 直接返回数据,简化调用
  },
  (error) => {
   
    if (error.response?.status === 401) {
   
      // 处理未授权逻辑
      window.location.href = "/login";
    }
    return Promise.reject(error);
  }
);
export default axiosInstance;

二、请求优化实践

1. 数据缓存

使用 React Query 或 SWR 实现数据缓存
结合 axios 使用 React Query 或 SWR,自动缓存数据,避免重复请求。

React Query 实现示例:

import {
    useQuery } from "react-query";
import axiosInstance from "./axios";

const fetchData = async () => {
   
  const response = await axiosInstance.get("/data");
  return response;
};

const MyComponent = () => {
   
  const {
    data, error, isLoading } = useQuery("dataKey", fetchData);

  if (isLoading) return 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

等一场春雨

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>