透過自己點擊連結來重新渲染React Router元件。
P粉295728625
P粉295728625 2023-07-27 22:31:16
0
1
421

我用 react-router-dom v6

代碼

label1 label2

問題

當你點擊一個連結或另一個連結時,Route元件會如預期進行渲染。但是,如果"/pathOne"處於活動狀態並且我再次點擊它,則什麼都不會發生。

是否有一種方法可以透過點擊活動連結來強制重新渲染路由元素?

如果設定了reloadDocument屬性,我可以刷新整個頁面,但這不是一個可行的選項。

P粉295728625
P粉295728625

全部回覆 (1)
P粉432906880

If all you really want is for the route component to rerender each time the link to its route is clicked then just have those components call theuseLocationhook. Each time the link is clicked a newlocationobject reference is created. The newlocationobject reference is enough to trigger the component using it to be rerendered.

Example:

const PathOne = () => { useLocation(); useEffect(() => { console.log("PathOne rerender"); }); return 

PathOne

; }; const PathTwo = () => { useEffect(() => { console.log("PathTwo rerender"); }); return

PathTwo

; };
function App() { return ( 
label1 label2 } /> } />
); }

    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板
    關於我們 免責聲明 Sitemap
    PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!