react-router4按需加载(踩坑填坑)
网络编程 2021-07-04 15:49www.168986.cn编程入门
这篇文章主要介绍了react-router4按需加载(踩坑填坑),长沙网络推广觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随长沙网络推广过来看看吧
react-router4如何去实现按需加载Component,在router4以前,我们是使用getComponent的方式来实现按需加载的,router4中,getComponent方法已经被移除,网上有好几种方案大多都解决的不太彻底,狼蚁网站SEO优化我说一下我的方案
一创建asyncComponent.js
import React, { Component } from "react"; export default function asyncComponent(importComponent) { class AsyncComponent extends Component { constructor(props) { super(props); this.state = { ponent: null }; } async ponentDidMount() { if(this.hasLoadedComponent()){ return; } const { default: ponent } = await importComponent(); this.setState({ ponent: ponent }); } hasLoadedComponent() { return this.state.ponent !== null; } render() { const C = this.state.ponent; return C ? <C {...this.props} /> : null; } } return AsyncComponent; }
二在引入asyncComponent.js,并导入需要按需加载的模块
import asyncComponent from "utils/asyncComponent" const Home = asyncComponent(() => import("./home")) const About = asyncComponent(() => import("./about"))
二render部分
const routes = () => ( <BrowserRouter> <Switch> <Route exact path="/" ponent={Home} /> <Route exact path="/about" ponent={About} /> <Redirect to="/" /> </Switch> </BrowserRouter> )
三预览效果
可以看到有一个警告,内容是
Warning: Can't perform a React state update on an unmounted ponent. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in the ponentWillUnmount method
这个警告其实是在组件卸载的时候执行了setState,虽然这个警告并不影响正常使用,看着总是不爽,所以我们要在组件卸载的时候结束setState,如下
ponentWillUnmount(){ this.setState = (state,callback)=>{ return } }
四完整版asyncComponent.js
import React, { Component } from "react"; export default function asyncComponent(importComponent) { class AsyncComponent extends Component { constructor(props) { super(props); this.state = { ponent: null }; } async ponentDidMount() { if(this.hasLoadedComponent()){ return; } const { default: ponent } = await importComponent(); this.setState({ ponent: ponent }); } hasLoadedComponent() { return this.state.ponent !== null; } ponentWillUnmount(){ this.setState = (state,callback)=>{ return } } render() { const C = this.state.ponent; return C ? <C {...this.props} /> : null; } } return AsyncComponent; }
五 webpack部分配置需要配置chunkFilename
eturn { output: { path: path.resolve(CWD, config.build), publicPath: config.static[process.env.MODE], chunkFilename: 'js/[name]-[chunkhash:8].js', filename: 'js/[name].js', },
结尾推广一下我的react-native开源项目
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 甘肃哪有关键词排名优化购买方式有哪些
- 甘肃SEO如何做网站优化
- 河南seo关键词优化怎么做电话营销
- 北京SEO优化如何做QQ群营销
- 来宾百度关键词排名:提升您网站曝光率的关键
- 卢龙关键词优化:提升您网站排名的策略与技巧
- 山东网站优化的注意事项有哪些
- 四川整站优化怎样提升在搜索引擎中的排名
- 疏附整站优化:提升网站性能与用户体验的全新
- 海南seo主要做什么工作售后服务要做到哪些
- 荣昌百度网站优化:提升您网站的搜索引擎排名
- 河北seo网站排名关键词优化如何做SEO
- 江西优化关键词排名推广售后保障一般有哪些
- 古浪SEO优化:提升你的网站可见性
- 西藏网站排名优化怎么把网站排名在百度首页
- 如何提升阳东百度快照排名:详尽指南