单页应用SPA的缓存问题:F5对单页应用的影响

发布于 2022-09-04 09:27:55 字数 223 浏览 11 评论 0

单页应用在使用router进行跳转之后,比如从index跳转到其他页面,在跳转之后的页面进行F5刷新,就会渲染出错:
clipboard.png
react找不到这个节点了

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱格式化 2022-09-11 09:27:55

Talk is cheap, show the code.

烟雨扶苏 2022-09-11 09:27:55

我的router是这样写的, 主要使用了react-router,页面的跳转用的是<Link to=""></Link>


import React from "react";
import {Router, Route, IndexRedirect} from "react-router";
import {TreeRoutes, PlainRoutes} from "./routes";
import StudentList from "../containers/Homepage/StudentList";

const loadModule = (callback) => (componentModule) => {
    callback(null, componentModule.default);
};

export default ({history}) => {
    return <Router history={history}>
        <Route path={TreeRoutes.index}>
            <IndexRedirect to={PlainRoutes.video_monitor.index}/>
            <Route path={TreeRoutes.video_monitor.index}
                   getComponent={(location, callback) => {
                       const renderRoute = loadModule(callback);
                       System.import('containers/App')
                           .then((component) => {
                               renderRoute(component)
                           })
                   }}>
                   ...
            </Route>
          </Route>
    </Router>
   
有什么问题么,谢谢!
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文