React 中实现 vue keep-alive 功能的方法

1. 使用 React Router 的 React.lazy 和 Suspense

React Router 的 React.lazy 和 Suspense 可以用于动态加载组件,并且可以结合 React.memo 或自定义的缓存逻辑来实现类似 keep-alive 的功能。

javascript 复制代码
import React, { Suspense, lazy } from 'react';
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';

const Home = lazy(() => import('./components/Home'));
const About = lazy(() => import('./components/About'));

function App() {
  return (
    <Router>
      <Suspense fallback={<div>Loading...</div>}>
        <Switch>
          <Route exact path="/" component={Home} />
          <Route path="/about" component={About} />
        </Switch>
      </Suspense>
    </Router>
  );
}

export default App;

2. 使用自定义的 Higher-Order Component (HOC)

javascript 复制代码
import React, { Component } from 'react';

const withCache = (WrappedComponent) => {
  class CacheComponent extends Component {
    constructor(props) {
      super(props);
      this.cachedInstance = null;
    }

    componentDidMount() {
      this.cachedInstance = <WrappedComponent {...this.props} />;
    }

    componentDidUpdate(prevProps) {
      if (prevProps.key !== this.props.key) {
        this.cachedInstance = <WrappedComponent {...this.props} />;
      }
    }

    render() {
      return this.cachedInstance;
    }
  }

  return CacheComponent;
};

const Home = (props) => (
  <div>
    <h1>Home Page</h1>
    <p>{props.message}</p>
  </div>
);

const CachedHome = withCache(Home);

function App() {
  const [message, setMessage] = React.useState('Welcome to the Home Page');

  return (
    <div>
      <button onClick={() => setMessage('New Message')}>Change Message</button>
      <CachedHome message={message} key={message} />
    </div>
  );
}

export default App;

3. 使用 React Context 和自定义 Hook

javascript 复制代码
import React, { createContext, useContext, useState, useEffect } from 'react';

const CacheContext = createContext();

const CacheProvider = ({ children }) => {
  const [cache, setCache] = useState({});

  const addToCache = (key, component) => {
    setCache((prevCache) => ({
      ...prevCache,
      [key]: component
    }));
  };

  const getCachedComponent = (key) => {
    return cache[key];
  };

  return (
    <CacheContext.Provider value={{ addToCache, getCachedComponent }}>
      {children}
    </CacheContext.Provider>
  );
};

const useCache = () => {
  const context = useContext(CacheContext);
  if (!context) {
    throw new Error('useCache must be used within a CacheProvider');
  }
  return context;
};

const withCache = (WrappedComponent) => {
  return (props) => {
    const { addToCache, getCachedComponent } = useCache();
    const key = props.key || 'default';

    useEffect(() => {
      const cachedComponent = getCachedComponent(key);
      if (!cachedComponent) {
        const component = <WrappedComponent {...props} />;
        addToCache(key, component);
      }
    }, [key, props, addToCache, getCachedComponent]);

    return getCachedComponent(key);
  };
};

const Home = (props) => (
  <div>
    <h1>Home Page</h1>
    <p>{props.message}</p>
  </div>
);

const CachedHome = withCache(Home);

function App() {
  const [message, setMessage] = React.useState('Welcome to the Home Page');

  return (
    <CacheProvider>
      <div>
        <button onClick={() => setMessage('New Message')}>Change Message</button>
        <CachedHome message={message} key={message} />
      </div>
    </CacheProvider>
  );
}

export default App;

4. 使用第三方库

有一些第三方库可以帮助实现类似 keep-alive 的功能,例如 react-keep-alive。

javascript 复制代码
npm install react-keep-alive
javascript 复制代码
import React from 'react';
import { KeepAlive, AliveScope } from 'react-keep-alive';

const Home = (props) => (
  <div>
    <h1>Home Page</h1>
    <p>{props.message}</p>
  </div>
);

function App() {
  const [message, setMessage] = React.useState('Welcome to the Home Page');

  return (
    <AliveScope>
      <div>
        <button onClick={() => setMessage('New Message')}>Change Message</button>
        <KeepAlive name="home">
          <Home message={message} />
        </KeepAlive>
      </div>
    </AliveScope>
  );
}

export default App;
相关推荐
前端老宋Running8 分钟前
一次从“卡顿地狱”到“丝般顺滑”的 React 搜索优化实战
前端·react.js·掘金日报
隔壁的大叔8 分钟前
如何自己构建一个Markdown增量渲染器
前端·javascript
用户44455436542610 分钟前
Android的自定义View
前端
WILLF11 分钟前
HTML iframe 标签
前端·javascript
枫,为落叶28 分钟前
Axios使用教程(一)
前端
小章鱼学前端33 分钟前
2025 年最新 Fabric.js 实战:一个完整可上线的图片选区标注组件(含全部源码).
前端·vue.js
ohyeah34 分钟前
JavaScript 词法作用域、作用域链与闭包:从代码看机制
前端·javascript
流星稍逝36 分钟前
手搓一个简简单单进度条
前端
倚栏听风雨1 小时前
详解 TypeScript 中,async 和 await
前端
4***14901 小时前
TypeScript在React中的前端框架
react.js·typescript·前端框架