react-router4 实现按需加载 实现按需加载后 引起 没法获取 this.props的问题解决办法

前端之家收集整理的这篇文章主要介绍了react-router4 实现按需加载 实现按需加载后 引起 没法获取 this.props的问题解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

react-router4 实现按需加载

实现按需加载后 引起 没法获取 his.props,如this.props.params,location 的问题解决办法

  1. 实现按需加载的办法

首先,新建一个bundle.js文件:

import React,{ Component } from 'react'

export default class Bundle extends React.Component {

    state = {
        // short for "module" but that's a keyword in js,so "mod"
        mod: null
    }

    componentWillMount() {
        this.load(this.props)
    }

    componentWillReceiveProps(nextProps) {
        if (nextProps.load !== this.props.load) {
            this.load(nextProps)
        }
    }

    load(props) {
        this.setState({
            mod: null
        })
        props.load((mod) => {
            this.setState({
                // handle both es imports and cjs
                mod: mod.default ? mod.default : mod
            })
        })
    }

    render() {
        if (!this.state.mod)
            return false
        return this.props.children(this.state.mod)
    }
}

然后,在入口处使用按需加载:


// ...

// bundle模型用来异步加载组件
import Bundle from './bundle.js';

// 引入单个页面包括嵌套的子页面)
// 同步引入
import Index from './app/index.js';
// 异步引入
import ListContainer from 'bundle-loader?lazy&name=app-[name]!./app/list.js';

const List = () => (
    <Bundle load={ListContainer}>
        {(List) => <List />}
    </Bundle>
)

// ...

    <HashRouter>
        <Router basename="/">
            <div>
                <Route exact path="/" component={Index} />
                <Route path="/list" component={List} />
            </div>
        </Router>
    </HashRouter>

// ...

webpack.config.js文件配置

output: {
    path: path.resolve(__dirname,'./output'),filename: '[name].[chunkhash:8].bundle.js',chunkFilename: '[name]-[id].[chunkhash:8].bundle.js',}```

 2. 解决 this.props 获取不到参数的问题


    import { withRouter } from 'react-router'
    
    class Test extends Component {
        ...
        render(){
            const { match,location,history } = this.props
            ...
        }
    }
    export default withRouter(Test)
原文链接:https://www.f2er.com/react/303958.html

猜你在找的React相关文章