ReactRouterV6如何获取当前路由参数

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

© 版权声明
THE END
支持一下吧
点赞7 分享
评论 抢沙发
头像
请文明发言!
提交
头像

昵称

取消
昵称表情代码快捷回复

    暂无评论内容