最近在学习react,使用router过程中在子组件想进行路由跳转,使用this.props.history报错,进一步调试发现this.props为undefined,查阅文档得知
没办法通过 this.props.children 取得当前组件的子元素。 因为this.props.children 返回的是组件拥有者传递给你的 passed onto you 子节点。
解决方法:(withRouter)
使用包裹当前组件
import React, { Component } from "react";
import { withRouter } from "react-router-dom";
class Documentation extends Component {
state = {};
render() {}
}
export default withRouter(Documentation);