您好,登錄后才能下訂單哦!
這篇文章主要介紹“react路由跳轉的方式有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“react路由跳轉的方式有哪些”文章能幫助大家解決問題。
方式:1、利用params,參數(shù)會顯示在地址欄,語法“...({pathname:...,search:地址欄數(shù)據(jù)})”;2、利用state,地址欄看不到數(shù)據(jù),語法“...({pathname:...,state:{test:...}}”。
本教程操作環(huán)境:Windows10系統(tǒng)、react17.0.1版、Dell G3電腦。
注意: 這里使用的react-router-dom
是版本5以上,路由形式是history
模式react-router-dom
文檔地址,其中依賴包history
的github地址
params
形式,路由跳轉后,參數(shù)會顯示在地址欄跳轉的方法是使用history.push({pathname: '/personal', search: 'test=22222'})
,其中search
鍵對應的值就是拼接在地址欄的數(shù)據(jù)
import React from 'react'import { useHistory } from 'react-router-dom'export default ()=> { const history = useHistory() // 頁面跳轉方法 history.push({pathname: '/personal', search: 'test=22222'}) return 123}
接收的方法。數(shù)據(jù)都是存儲在useLocation
中的search
獲取
import React from 'react'import { useLocation } from 'react-router-dom'export default ()=> { const location = useLocation() // 頁面跳轉方法 console.log(location, 'props') return 123}
state
的形式,頁面刷新不會丟失數(shù)據(jù),并且地址欄也看不到數(shù)據(jù)跳轉的方法是使用history.push({pathname: '/personal', state: {test: 'dashboard'}})
,其中search
鍵對應的值就是拼接在地址欄的數(shù)據(jù)
import React from 'react'import { useHistory } from 'react-router-dom'export default ()=> { const history = useHistory() // 頁面跳轉方法 history.push({pathname: '/personal', state: { test: 'dashboard' }}) return 123}
接收的方法。數(shù)據(jù)都是存儲在useLocation
中的search
獲取
import React from 'react'import { useLocation } from 'react-router-dom'export default ()=> { const location = useLocation() // 頁面跳轉方法 console.log(location, 'props') return 123}
關于“react路由跳轉的方式有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識,可以關注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。