react & ant-design-pro


  • 简介
  • 目录大纲
  • 最新文档
  • 文集下载

    ant design 常见问题

    页面加载慢时的加载中页面 修改 /src/pages/document.ejs 文件 404 页面不跳转 比如输入 /dashboard/test,其中 test 路径不存在,但是也不跳转 404,需要保证 dashboard 下有 404 组件,举个例子: json { path: '/dashboard', name: 'dashboard', icon: 'dashboard'……

    十三 - 2021年9月14日 09:58


    ant-design-pro v5 入门

    新建项目 shell npx create-umi my-application-name 执行这个命令后,会出现选项,第一个选 ant-design-pro,第二个选 TypeScript 第三个选 complete 安装依赖并启动 npm install npm run start 这里只能用 npm run start,npm run dev 没法登录,npm run start 修改了环境……

    十三 - 2021年8月4日 19:37


    登录流程与动态菜单

    在 src/app.tsx 里面有这么几行代码: javascript if (!initialState?.currentUser && location.pathname !== loginPath) { history.push(loginPath); } 这几行代码是校验登录的,如果当前用户不存在,且不是登录页面,则跳转登录页面。 在登录页面,有这么几行代码: ``……

    十三 - 2021年8月4日 19:37



    十三