react项目中使用按需加载功能

1. bundle-loader插件

根据官网的使用方法,首先安装bundle-loader依赖,npm i --save bundle-loader,在页面中使用一个异步加载的组件包裹我们需要引入的组件,然后传给Route,这里需要注意,引入页面组件的方式与之前也有不同,需要在平常的引入路径前加上bundle-loader?lazy&name=[name]!这个前缀

import lazyLoad from './utils/lazyLoad/lazyLoad';
import BasicLayout from 'bundle-loader?lazy&name=[name]!./layouts/BasicLayout';
<BrowserRouter>
    <Switch>
        <Route path="/login"  component={login}/>
        <Route path='/404' component={page404}/>
        <Route path="/"  component={lazyLoad(BasicLayout)}/>
    </Switch>
</BrowserRouter>
异步包裹组件 lazyLoad
import React from 'react';
import Bundle from './Bundle';

// 默认加载组件,可以直接返回 null
const Loading = () => <div>Loading...</div>;

/*
   包装方法,第一次调用后会返回一个组件(函数式组件)
   由于要将其作为路由下的组件,所以需要将 props 传入
*/
const lazyLoad = loadComponent => props => (
    <Bundle load={loadComponent}>
        {Comp => (Comp ? <Comp {...props} /> : <Loading />)}
    </Bundle>
);

export default lazyLoad;
核心Bundle组件
import React from 'react';

export default class Bundle extends React.Component {
    state = {
        mod: null
    }
    componentWillMount() {
        this.load(this.props);
    }
    componentWillReceiveProps(nextProps) {
        if (nextProps.load !== this.props.load) {
            this.load(nextProps);
        }
    }
    // load 方法,用于更新 mod 状态
    load(props) {
        // 初始化
        this.setState({
            mod: null
        });
        /*
           调用传入的 load 方法,并传入一个回调函数
           这个回调函数接收 在 load 方法内部异步获取到的组件,并将其更新为 mod
        */
        props.load(mod => {
            this.setState({
                mod: mod.default ? mod.default : mod
            });
        });
    }

    render() {
        /*
           将存在状态中的 mod 组件作为参数传递给当前包装组件的'子'
        */
        return this.state.mod ? this.props.children(this.state.mod) : null;
    }
}

安装上述代码放于项目中,并且用正确的方式引入组件,即可开启异步加载功能。

但是有一点需要注意,在create-react-app中使用bundle-loader功能会报错
$KJ%DK_J6T6J)JT9~TWXJPU.png

这是因为在脚手架中配置了相关的eslint规则,它不允许我们使用bundle-loader的方式引入组件。这条规则在prod和dev的webpack文件中都有配置,如果注释这一段代码则可以正常编译。

{
  test: /\.(js|jsx|mjs)$/,
  enforce: 'pre',
  use: [
    {
      options: {
        formatter: eslintFormatter,
        eslintPath: require.resolve('eslint'),

      },
      loader: require.resolve('eslint-loader'),
    },
  ],
  include: paths.appSrc,
},

2. 使用import()异步引入功能

Webpack loaders are not supported by Create React App.
Moreover, you don’t need bundle-loader to implement lazy loading.
It is already supported out of the box with dynamic import().

我Google找到了这个答案,建议我们在create-react-app脚手架中使用import()异步引入的功能。
那么import()的使用方法如下

import AsyncComponent from './utils/AsyncLoad/AsyncComponent';
const BasicLayout = AsyncComponent(() => import("./layouts/BasicLayout"));
<BrowserRouter>
    <Switch>
        <Route path="/login"  component={login}/>
        <Route path='/404' component={page404}/>
        <Route path="/"  component={BasicLayout}/>
    </Switch>
</BrowserRouter>
AsyncComponent文件代码
import React, { Component } from "react";

export default function AsyncComponent(importComponent) {
    class AsyncComponent extends Component {
        constructor(props) {
            super(props);

            this.state = {
                component: null
            };
        }

        async componentDidMount() {
            const { default: component } = await importComponent();

            this.setState({
                component: component
            });
        }

        render() {
            const C = this.state.component;

            return C ? <C {...this.props} /> : null;
        }
    }

    return AsyncComponent;
}
至此import()的异步加载引入成功
image.png

3. react-loadable

Now this seems really easy to implement but you might be wondering what happens if the request to import the new component takes too long, or fails. Or maybe you want to preload certain components. For example, a user is on your login page about to login and you want to preload the homepage.
It was mentioned above that you can add a loading spinner while the import is in progress. But we can take it a step further and address some of these edge cases. There is an excellent higher order component that does a lot of this well; it’s called react-loadable.

作者给出了import()实现异步加载的缺点:1. 如果组件加载时间过长或者失败。2. 或者你想预加载某些组件,比如用户在你的登录页面上即将登录所以你想要预加载主页。
上面提到过,你可以在导入过程中添加加载微调器。但我们可以更进一步,解决其中一些边缘情况。有一个很好的高阶组件可以很好地完成这些工作,那就是react-loadable。
使用方法

import Loadable from 'react-loadable';
import MyLoadingComponent from './utils/MyLoadingComponent';
const BasicLayout = Loadable({
    loader: () => import("./layouts/BasicLayout"),
    loading: MyLoadingComponent
});
<BrowserRouter>
    <Switch>
        <Route path="/login"  component={login}/>
        <Route path='/404' component={page404}/>
        <Route path="/"  component={BasicLayout}/>
    </Switch>
</BrowserRouter>
MyloadingComponent文件代码
/**
 * Created by ZhangLynn on 2018/7/31
 **/
import React from 'react';
const MyLoadingComponent = ({isLoading, error}) => {
    // Handle the loading state
    if (isLoading) {
        return <div>Loading...</div>;
    }
    // Handle the error state
    else if (error) {
        return <div>Sorry, there was a problem loading the page.</div>;
    }
    else {
        return null;
    }
};
export default MyLoadingComponent;

至此功能已经添加,并且能够编译成功


image.png

https://serverless-stack.com/chapters/code-splitting-in-create-react-app.html
https://www.jianshu.com/p/697669781276

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,468评论 5 473
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,620评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,427评论 0 334
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,160评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,197评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,334评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,775评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,444评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,628评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,459评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,508评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,210评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,767评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,850评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,076评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,627评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,196评论 2 341

推荐阅读更多精彩内容