博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于React动态加载路由处理!
阅读量:5835 次
发布时间:2019-06-18

本文共 1776 字,大约阅读时间需要 5 分钟。

前言

相信很多人都遇到过想在React项目中动态加载路由这种问题,接下来我们逐步实现。

引入必要的依赖

import React from 'react'import { Router, Route, IndexRoute, hashHistory } from 'react-router'

接下来创建一个component函数

目的就是为了变为router的component实现异步加载。

// 异步按需加载componentfunction asyncComponent(getComponent) {    return class AsyncComponent extends React.Component {      static Component = null;      state = { Component: AsyncComponent.Component };        componentDidMount() {        if (!this.state.Component) {          getComponent().then(({default: Component}) => {            AsyncComponent.Component = Component            this.setState({ Component })          })        }      }      //组件将被卸载      componentWillUnmount(){         //重写组件的setState方法,直接返回空        this.setState = (state,callback)=>{            return;        };      }      render() {        const { Component } = this.state        if (Component) {          return 
} return null } } }

在此说明componentWillUnmount钩子是为了解决Can only update a mounted or mounting component的这个问题,原因是当离开页面以后,组件已经被卸载,执行setState时无法找到渲染组件。

接下来实现本地文件路径的传入

function load(component) {    return import(`./routes/${component}`)  }

将已知地址路径传递到一个函数并把这个函数作为参数传递到 asyncComponent中这样asyncComponent就能接收到这个路由的地址了,然后我们要做的就是将这个asyncComponent函数带入到router中。

未定义
}/>
{children}
}>
load('GlobalNotification/CustomerWorkAssistantTodo/CustomerAgencyMatter'))}/>
load('GlobalNotification/CustomerWorkAssistantTodo/CustomerAlreadyMatter'))}/>
load('GlobalNotification/SystemMessage/SystemMessage'))}/>
load('GlobalNotification/SystemMessage/SystemMessagePer'))}/>

从代码中可以看出已经实现了router 的component 的引入,这样自然就可以通过一个循环来实现动态的加载啦!

转载地址:http://skycx.baihongyu.com/

你可能感兴趣的文章
6、Web Service-拦截器
查看>>
Flask 源码流程,上下文管理
查看>>
Breaking parallel loops in .NET C# using the Stop method z
查看>>
修改故障转移群集心跳时间
查看>>
[轉]redis;mongodb;memcache三者的性能比較
查看>>
微软职位内部推荐-Sr DEV
查看>>
让你的WPF程序在Win7下呈现Win8风格主题
查看>>
802.11 学习笔记
查看>>
Leetcode-Database-176-Second Highest Salary-Easy(转)
查看>>
构建Docker Compose服务堆栈
查看>>
最小角回归 LARS算法包的用法以及模型参数的选择(R语言 )
查看>>
Hadoop生态圈-Kafka常用命令总结
查看>>
如何基于Redis Replication设计并实现Redis-replicator?
查看>>
浮点数内存如何存储的
查看>>
贪吃蛇
查看>>
EventSystem
查看>>
用WINSOCK API实现同步非阻塞方式的网络通讯
查看>>
玩一玩博客,嘿嘿
查看>>
Ubuntu设置python3为默认版本
查看>>
JsonCpp 的使用
查看>>