我是靠谱客的博主 大方草丛,最近开发中收集的这篇文章主要介绍react路由跳转的几种方式是什么,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本教程操作环境:Windows10系统、react17.0.1版、Dell G3电脑。

react路由跳转的几种方式是什么

注意: 这里使用的react-router-dom是版本5以上,路由形式是history模式
react-router-dom文档地址,其中依赖包history的github地址

1. params形式,路由跳转后,参数会显示在地址栏

在这里插入图片描述

  • 跳转的方法是使用history.push({pathname: '/personal', search: 'test=22222'}),其中search键对应的值就是拼接在地址栏的数据
    import React from 'react'import { useHistory } from 'react-router-dom'export default ()=> {
    	const history = useHistory()
    	// 页面跳转方法
    	history.push({pathname: '/personal', search: 'test=22222'})
    	return 123}
    登录后复制
  • 接收的方法。数据都是存储在useLocation中的search获取
    import React from 'react'import { useLocation } from 'react-router-dom'export default ()=> {
    	const location = useLocation()
    	// 页面跳转方法
    	console.log(location, 'props')
    	return 123}
    登录后复制
    登录后复制
    在这里插入图片描述

2. 使用state的形式,页面刷新不会丢失数据,并且地址栏也看不到数据

  • 跳转的方法是使用history.push({pathname: '/personal', state: {test: 'dashboard'}}),其中search键对应的值就是拼接在地址栏的数据
    import React from 'react'import { useHistory } from 'react-router-dom'export default ()=> {
    	const history = useHistory()
    	// 页面跳转方法
    	history.push({pathname: '/personal', state: { test: 'dashboard' }})
    	return 123}
    登录后复制
  • 接收的方法。数据都是存储在useLocation中的search获取
    import React from 'react'import { useLocation } from 'react-router-dom'export default ()=> {
    	const location = useLocation()
    	// 页面跳转方法
    	console.log(location, 'props')
    	return 123}
    登录后复制
    登录后复制
    在这里插入图片描述

推荐学习:《react视频教程》

以上就是react路由跳转的几种方式是什么的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是大方草丛为你收集整理的react路由跳转的几种方式是什么的全部内容,希望文章能够帮你解决react路由跳转的几种方式是什么所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部