第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

當(dāng)我刷新時(shí),React Router 不顯示組件

當(dāng)我刷新時(shí),React Router 不顯示組件

明月笑刀無(wú)情 2023-07-20 15:52:59
我有嵌套路由,第三級(jí)路由失敗。這是我的路由結(jié)構(gòu)是的....但問(wèn)題是,App.js 路由到 -Home -About -Dashboard 然后 Dashboard 有子組件到 -Profile (/dashboard/user) -Account (/dashboard/account) -Wallet (/dashboard/wallet) - 設(shè)置 (/dashboard/settings) 然后設(shè)置還有其他子組件 - 編輯個(gè)人資料 (/dashboard/settings/editprofile) - 編輯密碼和 Pin 圖 (/dashboard/settings/editpassword) - 編輯帳號(hào) (/儀表板/設(shè)置/編輯編號(hào))前兩級(jí)路由正在工作,但是當(dāng)我刷新頁(yè)面時(shí),最后一個(gè)路由失敗,盡管當(dāng)我返回主頁(yè)并單擊鏈接直到到達(dá)最后一個(gè)組件時(shí)它會(huì)呈現(xiàn),但是一旦我刷新瀏覽器,它就會(huì)中斷,當(dāng)我手動(dòng)輸入時(shí)它也不起作用。這是我的 App.js 路由設(shè)置import {  BrowserRouter as Router,  Switch,  Route,  Redirect,} from "react-router-dom";const App = () => {  return (    <div className="App">      {/* setting up the routes */}        <Switch>          <Route path="/" exact component={Home} />          <Route path="/dashboard" component={dashboard} />          <Route path="/login" exact component={Login} />          <Route path="/register" exact component={SignUp} />          <Route path="/about" exact component={AboutServices} />        </Switch>      </Router>    </div>  );};我的儀表板.jsimport { Route, useRouteMatch, NavLink, Switch } from "react-router-dom";const App = () => {     let { path, url } = useRouteMatch();  return (    <div className="App">       <nav> Navavigation bar <nav>      {/* setting up the routes */}    <div className="MainBody">      <Switch>        <Route path={`${path}/wallet`} exact component={Wallet} />        <Route path={`${path}/profile`} component={Profile} />        <Route path={`${path}/account`} component={Account} />        <Route path={`${path}/settings`} exact component={Settings} />      </Switch>    </div>     </div>  );};設(shè)置頁(yè)面import {  Switch,  Route,  useRouteMatch,  NavLink,  BrowserRouter,} 
查看完整描述

1 回答

?
www說(shuō)

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超8個(gè)贊

我 99% 確定您的問(wèn)題是因?yàn)槟褂昧顺^(guò) 1 個(gè)路由器。刪除UIBrowserRouter周?chē)膬?nèi)容Settings。我猜測(cè)當(dāng)嵌套路由沒(méi)有通過(guò)外部路由器的鏈接導(dǎo)航到時(shí),該match道具不會(huì)像您期望的那樣初始化。


const Settings = (props) => {

  let { path, url } = useRouteMatch();


  return (

    <div className="Settings">

      <nav>Navigation bar</nav>

      <div className="SettingsWrapper">

        <Switch>

          <Route path={`${path}/editprofile`} component={EditProfile} />

          <Route

            path={`${path}/changepassword`}

            component={ChangePassword}

          />

          <Route path={`${path}/changepin`} component={ChangePin} />

          <Route

            path={`${path}/accountsettings`}

            component={BankSettings}

          />

        </Switch>

      </div>

    </div>

  );

};

編輯

好吧,當(dāng)刪除嵌套路由器并創(chuàng)建我自己的代碼和盒子時(shí),我發(fā)現(xiàn)了嵌套路由的一個(gè)小、微妙但重要的“怪癖”。任何渲染更多路由的嵌套路由都不能指定exact路由上的 prop。


const App = () => {

     let { path, url } = useRouteMatch();

  return (

    <div className="App">

       <nav>Navigation bar</nav>


      {/* setting up the routes */}


      <div className="MainBody">

        <Switch>

          ...

          <Route

            path={`${path}/settings`}

            exact // <-- exact match precludes sub-routes!!

            component={Settings}

          />

        </Switch>

      </div> 

    </div>

  );

};

因此,如果路徑是“/dashboard/settings/editprofile”,則路徑不再與路由路徑完全匹配,并且不會(huì)呈現(xiàn)路由。


解決方案

exact只需省略嵌套路由渲染子路由的 prop即可。請(qǐng)記住,路由路徑將被視為“前綴”,因此如果沒(méi)有exact指定 prop,路徑“/dashboard/settings/editprofile”可以與“/dashboard/settings”匹配。


const Dashboard = () => {

  let { path, url } = useRouteMatch();


  return (

    <div className="App">

      <nav>Dashboard Navigation bar </nav>

      <NavLink to={`${url}/settings`}>Settings</NavLink>


      {/* setting up the routes */}


      <div className="MainBody">

        <Switch>

          ...

          <Route path={`${path}/settings`} component={Settings} /> // <-- no exact match

        </Switch>

      </div>

    </div>

  );

};


查看完整回答
反對(duì) 回復(fù) 2023-07-20
  • 1 回答
  • 0 關(guān)注
  • 196 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)