故障排除备忘录呼叫React+打字稿

发布于 2025-01-19 16:25:08 字数 1514 浏览 0 评论 0原文

我需要你的帮助。最近开始学习Typescript,遇到了一个React问题。 我尝试用 React.memo() 包装我的路由器。像这样:

export const Router = React.memo<RouterPropsInterface>(({ isAuth }) => {

  if (!isAuth) {
      return (
          <Suspense fallback={<Loader text={""}/>}>
              <Routes>
                  <Route path={'/'} element={<LoginPage/>}/>
                  <Route path={'*'} element={<LoginPage/>}/>
                  <Route path={'register'} element={<RegisterPage/>}/>
              </Routes>
          </Suspense>
      )
  }

  return (
      <Suspense fallback={<Loader text={""}/>}>
          <Routes>
              <Route path={'create'} element={<AddCard/>}/>
              <Route path={'posts'} element={<UsersList/>}/>
              <Route path={'/'} element={<Home/>}/>
              <Route path={"*"} element={<Home/>}/>
          </Routes>
      </Suspense>

  )
});

我的 RouterPropsInterface 看起来像这样:

export interface RouterPropsInterface {
    isAuth: boolean,
}

但在这种情况下,我还有其他问题:

src/routers/Router.tsx
  Line 12:23:  Component definition is missing display name  react/display-name
  Line 12:59:  'isAuth' is missing in props validation       react/prop-types

"react": "^17.0.2", "typescript": "^4.6.2"

我不想添加 eslint-disablers,只是想了解我做错了什么。

谢谢!

I need your help. Started learning Typescript recently and got one problem with React.
I try to wrap my Router with React.memo(). Smth like this:

export const Router = React.memo<RouterPropsInterface>(({ isAuth }) => {

  if (!isAuth) {
      return (
          <Suspense fallback={<Loader text={""}/>}>
              <Routes>
                  <Route path={'/'} element={<LoginPage/>}/>
                  <Route path={'*'} element={<LoginPage/>}/>
                  <Route path={'register'} element={<RegisterPage/>}/>
              </Routes>
          </Suspense>
      )
  }

  return (
      <Suspense fallback={<Loader text={""}/>}>
          <Routes>
              <Route path={'create'} element={<AddCard/>}/>
              <Route path={'posts'} element={<UsersList/>}/>
              <Route path={'/'} element={<Home/>}/>
              <Route path={"*"} element={<Home/>}/>
          </Routes>
      </Suspense>

  )
});

My RouterPropsInterface looks like this:

export interface RouterPropsInterface {
    isAuth: boolean,
}

But in that case, I have other problems:

src/routers/Router.tsx
  Line 12:23:  Component definition is missing display name  react/display-name
  Line 12:59:  'isAuth' is missing in props validation       react/prop-types

"react": "^17.0.2",
"typescript": "^4.6.2"

I don't want to add eslint-disablers, just wanna understand what I'm doing wrong.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七堇年 2025-01-26 16:25:08

当使用 React.memo 包装组件时,React 不再推断 displayName 属性。所以,你需要这样设置。

export const Router = React.memo(({ isAuth }) => {...}
Router.displayName = "Router"

关于 prop 类型,您可以通过添加 prop 类型来满足这一点,如下所示:

export const Router = React.memo(({ isAuth }: {isAuth: RouterPropsInterface }) => {...}

When wrapping a component with React.memo, the displayName property is no longer inferred by React. So, you need to set it like so.

export const Router = React.memo(({ isAuth }) => {...}
Router.displayName = "Router"

Regarding prop types, you can satisfy this by adding prop types like so:

export const Router = React.memo(({ isAuth }: {isAuth: RouterPropsInterface }) => {...}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文