React Router 5.1.0使用useHistory做頁面跳轉導航的實現
阿新 • • 發佈:2021-11-15
目錄
- 1.使用withRouter元件
- 2、使用Route標籤
- React Router 5.1.0使用useHistory
在React Router v4中 可以使用
- withRouter元件
- 使用標籤
1.使用withRouter元件
withRouter元件將注入history物件作為http://www.cppcns.com該元件的屬性
import React from 'react' import { withRouter } from 'react-router-dom' import { Button } from 'antd' export const ButtonWithRouter = withRouter(({ history }) => { console.log('history',history) return ( <Button type='default' onClick={() => { history.push('/new-location') }} > Click Me! </Button> ) })
引入 import { ButtonWithRouter } from ‘./buttonWithRouter'
或者:
const ButtonWithRouter = (props) => { console.log('props',props) return ( <Button type='default' onClick={() => { props.history.location.push('/new-location') }} > Click Me! </Button> http://www.cppcns.com) } export default withRouter(ButtonWithRouter)
引入: import ButtonWithRouter from ‘./buttonWithRouter'
2、使用Route標籤
在route入口
Route元件不僅用於匹配位置。 您可以渲染無路徑的路由,它始終與當前位置匹配。 Route元件傳遞與withRouter相同的屬性,因此能夠通過history的屬性訪問history的方法。
so:
export const ButtonWithRouter = () => ( <Route render={({ history }) => { console.log('history',history) return ( <客棧button type='button' onClick={() => { history.push('/new-location') }} > Click Me! </button> ) }} /> )
React Router 5.1.0使用useHistory
從React Route程式設計客棧r v5.1.0開始,新增了useHistory鉤子(hook),如果是使用React >16.8.0,使用useHistory即可實現頁面跳轉
export const ButtonWithRouter = () => { const history = useHistory(); console.log('history',history) return ( <button type='button' onClick={() => { history.push('/new-location') }} > Click Me! </button> ) }
到此這篇關於React Router 5.1.0使用useHistory做頁面跳轉導航的實現的文章就介紹到這了,更多相關ReactRouter useHistory頁面跳轉導航內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!