1.由于v6把旧版本中的路由组件
能收到的三个参数(Location,history,match)移除了
所以不能直接使用this.props.location.pathname获取到当前路由
而且withRouter也移除了
2.在v6获取当前路由,需要自己定义withRouter
代码如下:
withRouter.js
import {useLocation, useNavigate } from "react-router"; import React from 'react' export default function withRouter(Child) { return (props) => { const location = useLocation(); const navigate = useNavigate(); return <Child {...props} navigate={navigate} location={location} />; } }
3.在此使用写好的withRouter
按如下方式使用
import React, { Component } from 'react' import withRouter from '../../utils/withRouter' //在此引入自己的文件所在路径 class index extends Component { render() { //能够调用到了 console.log(this.props.location) return ( <div> </div> ) } } export default withRouter(index)
4.结果
如下:
(按自己需要获取即可):
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
来源链接:https://www.jb51.net/javascript/31768687m.htm
© 版权声明
本站所有资源来自于网络,仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您(转载者)自己承担!
如有侵犯您的版权,请及时联系3500663466#qq.com(#换@),我们将第一时间删除本站数据。
如有侵犯您的版权,请及时联系3500663466#qq.com(#换@),我们将第一时间删除本站数据。
THE END
暂无评论内容