亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

react路由跳轉的方式有哪些

發布時間:2022-04-21 11:57:27 來源:億速云 閱讀:337 作者:iii 欄目:web開發

這篇文章主要介紹“react路由跳轉的方式有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“react路由跳轉的方式有哪些”文章能幫助大家解決問題。

方式:1、利用params,參數會顯示在地址欄,語法“...({pathname:...,search:地址欄數據})”;2、利用state,地址欄看不到數據,語法“...({pathname:...,state:{test:...}}”。

本教程操作環境:Windows10系統、react17.0.1版、Dell G3電腦。

react路由跳轉的幾種方式是什么

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

1. params形式,路由跳轉后,參數會顯示在地址欄

react路由跳轉的方式有哪些

  • 跳轉的方法是使用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}

    react路由跳轉的方式有哪些

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路由跳轉的方式有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

岳阳县| 中牟县| 镇远县| 阿拉善左旗| 会宁县| 永年县| 渭南市| 乳源| 惠州市| 葫芦岛市| 合阳县| 南雄市| 沧州市| 南江县| 本溪市| 邵东县| 黔江区| 囊谦县| 行唐县| 福鼎市| 黄冈市| 平果县| 康定县| 射洪县| 凤翔县| 清新县| 隆回县| 庆安县| 乌审旗| 盘山县| 金塔县| 丹江口市| 克什克腾旗| 岳西县| 柞水县| 广汉市| 东兰县| 竹北市| 鄂州市| 大化| 五常市|