react-router redirect 在 Switch 中没有改变 url

react-router redirect doesn't change url in Switch

我正在使用 react-router 设置我的应用程序,并尝试使用 <Redirect/> 设置路由器进行身份验证。

Route组件有两个不同的组件,一个是private Route,另一个是public route.

预期结果:当 auth 为 false 时,页面应该跳回到 public 页面,我设置了 <Redirect to={"/public"} /> 到目前为止,路由似乎工作正常,但重定向无法正常工作。 欢迎任何想法!谢谢!!

PrivateRoute

interface PrivateRouteProps {
  isLogin: boolean;
  privateRoutes: RouteItem[];
}

const PrivateRoute: React.FunctionComponent<PrivateRouteProps> = (
  props: PrivateRouteProps
) => {
  return (
    <>
      {props.isLogin ? (
        props.privateRoutes.map(item => {
          return <Route key={item.path} {...item} />;
        })
      ) : (
        <Redirect to={PUBLIC.path} />
      )}
    </>
  );
};

PublicRoute

interface PublicProps {
  publicRoutes: RouteItem[];
}

const PublicRoute: React.FC<PublicProps> = (props: PublicProps) => {
  return (
    <>
      {props.publicRoutes.map(route => (
        <Route key={route.path} {...route} />
      ))}
    </>
  );
};

Route

<BrowserRouter>
      <Switch>
        <PublicRoute publicRoutes={publicRoutes} />
        <PrivateRoute privateRoutes={privateRoutes} isLogin={login} />
      </Switch>
    </BrowserRouter>

更新 正如所接受的答案所提到的,这一切都是关于 <Switch/> 与 Fragment 一起工作的,所以我修改了我的路线如下,它就像一个魅力。 只是更新它,因为有人可能有类似的问题。

<BrowserRouter>

            <Switch>
                {publicRoutes.map(item => {
                    return <Route key={item.path} {...item}/>
                })}
                {privateRoutes.map(item => {
                    return <PrivateRoute key={item.path}
                                         exact={item.exact}
                                         component={item.component}
                                         path={item.path}
                                         redirectPath={SIGN_IN.path}
                    />

      })}
            </Switch>
        </BrowserRouter>

我已经阅读了您的代码并归结为一件事。组件 <Switch> 与片段 <></> 一起工作的方式。它只寻找第一个 React Fragment,因为他们不想横穿一棵树:

https://github.com/ReactTraining/react-router/issues/5785

要解决这个问题,您需要删除组件中的 React.Fragment。 所以您的应用程序将如下所示:

<Switch> 
    <Route ...>
    <Route ...>
    <Route ...>
</Switch>

而不是顺便说一句,现在是这样

      <Switch> 
    //it will only sees the first one //if you switch orders - Private with Public
    // Private will work but not Public anymore :(
        <React.Fragment>
            <Route ...>
            <Route ...>
        </React.Fragment>
        <React.Fragment>
            <Route ...>
        </React.Fragment>
     </Switch>

另一个解决方案(这就是我所做的,因为我对 TypeScript 不够精通,无法更改类型和 returns)是在你的文件中添加一个 wrapper切换应用程序并使用 <Route> 内的渲染方法处理私有路由的 return ,如下所示:

  //index.tsx
        <Switch>
            <>
            <PublicRoute publicRoutes={publicRoutes}/>
            <PrivateRoute privateRoutes={privateRoutes} isLogin={login}/>
            </>
        </Switch>

这会导致无限循环重新渲染的另一个错误(反应路由器再次 可能 对嵌套路由有不好的时间)并解决你会做的以下内容到您的 PrivateRoutes 组件:

  //PrivateRoute.tsx
return (
    <>
        {props.privateRoutes.map(item =>
            <Route key={item.path} exact path={item.path} render={() => (
                !props.isLogin
                    ? (
                    <Redirect to={PUBLIC.path}/>
                ):
                    //HOC transforming function Component into Component
                    // @ts-ignore (you can deal here better than me hehehe)
                    ((PrivateComponent)=><PrivateComponent/>)(item.component)
            )}/>)}
    </>
);

TL,DR: 您正在通过添加 <></> 来增加嵌套复杂性(转换为 React.Fragment)在你的结构中。如果你删除它们或按照上面的代码你应该没问题

希望对您有所帮助。祝你好运! :)