使用react dva按需加载

Posted unreal-feather

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用react dva按需加载相关的知识,希望对你有一定的参考价值。

然后子路由组件会报错。

Add "publicPath": "/" to .webpackrc or .roadhogrc can fix this issue

export default function RouterConfig({ history,app }) {
    const LoginPage = (dynamic as any)({
        app,
        component:()=>import(‘./routes/LoginPage/LoginPage‘)
    })
    const HomePage = (dynamic as any)({
        app,
        component:()=>import(‘./routes/HomePage‘)
    })

 

以上是关于使用react dva按需加载的主要内容,如果未能解决你的问题,请参考以下文章

react快速构建一个应用项目

[react] Module not found: Can't resolve 'schedule' in 'C:Usersadcaldvmtn7myapp (代码片段

React 按需加载 - 代码分隔

react-router 4.x 路由按需加载

前端性能优化之按需加载(React-router+webpack)

React自定义组件之懒加载-LazyLoad。