91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

React Router 5.1.0如何使用useHistory實現頁面跳轉導航

發布時間:2021-11-12 17:26:12 來源:億速云 閱讀:686 作者:柒染 欄目:開發技術

React Router 5.1.0如何使用useHistory實現頁面跳轉導航,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

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實現頁面跳轉導航

引入 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實現頁面跳轉導航

引入: import ButtonWithRouter from ‘./buttonWithRouter'

2、使用Route標簽

在route入口

React Router 5.1.0如何使用useHistory實現頁面跳轉導航

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 Router 5.1.0使用useHistory

從React Router 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實現頁面跳轉導航

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

向AI問一下細節

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

AI

五原县| 会昌县| 平阳县| 石渠县| 东山县| 余姚市| 沙河市| 游戏| 文昌市| 崇明县| 霍州市| 吴旗县| 淅川县| 文化| 通化县| 宜州市| 巨鹿县| 寿宁县| 邛崃市| 北川| 安庆市| 信阳市| 阿拉尔市| 广丰县| 蒙阴县| 宁明县| 安徽省| 阿拉善右旗| 昌邑市| 万源市| 西峡县| 大同市| 麻阳| 毕节市| 文成县| 花莲县| 柳江县| 侯马市| 仁怀市| 天津市| 鲁山县|