标签:对象 exp 函数 port ops efault 点击 return console
高阶组件中的withRouter
, 作用是将一个组件包裹进Route
里面, 然后react-router
的三个对象history, location, match
就会被放进这个组件的props
属性中.
1 import React from ‘react‘ 2 import ‘./nav.css‘ 3 import { 4 NavLink, 5 withRouter 6 } from "react-router-dom" 7 8 class Nav extends React.Component{ 9 handleClick = () => { 10 // Route 的 三个对象将会被放进来, 对象里面的方法可以被调用 11 console.log(this.props); 12 } 13 render() { 14 return ( 15 <div className={‘nav‘}> 16 <span className={‘logo‘} onClick={this.handleClick}>博客园</span> 17 <li><NavLink to="/" exact>随笔</NavLink></li> 18 <li><NavLink to="/activities">文章</NavLink></li> 19 <li><NavLink to="/topic">日记</NavLink></li> 20 <li><NavLink to="/login">评论</NavLink></li> 21 </div> 22 ); 23 } 24 } 25 26 // 导出的是 withRouter(Nav) 函数执行 27 export default withRouter(Nav)
withRouter
的作用就是, 如果我们某个东西不是一个Router
, 但是我们要依靠它去跳转一个页面, 比如点击页面的logo
, 返回首页, 这时候就可以使用withRouter
来做.span
使用withRouter
作为一个可点击跳转的Link
标签:对象 exp 函数 port ops efault 点击 return console
原文地址:https://www.cnblogs.com/qdjj/p/12447979.html