溫馨提示×

溫馨提示×

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

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

React Router 5.1.0如何使用useHistory實(shí)現(xiàn)頁面跳轉(zhuǎn)導(dǎo)航

發(fā)布時間:2021-11-12 17:26:12 來源:億速云 閱讀:669 作者:柒染 欄目:開發(fā)技術(shù)

React Router 5.1.0如何使用useHistory實(shí)現(xiàn)頁面跳轉(zhuǎn)導(dǎo)航,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1.使用withRouter組件

withRouter組件將注入history對象作為該組件的屬性

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>

  )
})

React Router 5.1.0如何使用useHistory實(shí)現(xiàn)頁面跳轉(zhuǎn)導(dǎo)航

引入 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>

  )
}

export default withRouter(ButtonWithRouter)

React Router 5.1.0如何使用useHistory實(shí)現(xiàn)頁面跳轉(zhuǎn)導(dǎo)航

引入: import ButtonWithRouter from ‘./buttonWithRouter'

2、使用Route標(biāo)簽

在route入口

React Router 5.1.0如何使用useHistory實(shí)現(xiàn)頁面跳轉(zhuǎn)導(dǎo)航

Route組件不僅用于匹配位置。 您可以渲染無路徑的路由,它始終與當(dāng)前位置匹配。 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實(shí)現(xiàn)頁面跳轉(zhuǎn)導(dǎo)航

React Router 5.1.0使用useHistory

從React Router v5.1.0開始,新增了useHistory鉤子(hook),如果是使用React >16.8.0,使用useHistory即可實(shí)現(xiàn)頁面跳轉(zhuǎn)

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實(shí)現(xiàn)頁面跳轉(zhuǎn)導(dǎo)航

關(guān)于React Router 5.1.0如何使用useHistory實(shí)現(xiàn)頁面跳轉(zhuǎn)導(dǎo)航問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI