路径参数名称在React-Router-dom中如何处理?

发布于 2025-02-14 02:05:33 字数 173 浏览 0 评论 0原文

home/user/:id/friends/:id
function SomeComponent() {
  const { id } = useParams();
}

这里将使用哪个ID?有名字冲突。

home/user/:id/friends/:id
function SomeComponent() {
  const { id } = useParams();
}

Which id will be used here? There are name conflicts.

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

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

发布评论

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

评论(1

心的憧憬 2025-02-21 02:05:33

路径的最后一个参数是任何组件都会看到的值。

这对于测试是微不足道的。

示例:

const Component = () => {
  const { id } = useParams();

  return <h1>Id: {id}</h1>;
};

export default function App() {
  return (
    <div className="App">
      <Link to="/home/user/123/friends/456">Test?</Link>

      <Routes>
        <Route path="home/user/:id/friends/:id" element={<Component />} />
      </Routes>
    </div>
  );
}

“编辑hof-is-path-parameter-name-name-conflicts

“在此处输入映像”

不要在每个路径字符串中使用相同的路径参数,路线。

The last parameter of the path is the value that any component will see.

This is trivial to test.

Example:

const Component = () => {
  const { id } = useParams();

  return <h1>Id: {id}</h1>;
};

export default function App() {
  return (
    <div className="App">
      <Link to="/home/user/123/friends/456">Test?</Link>

      <Routes>
        <Route path="home/user/:id/friends/:id" element={<Component />} />
      </Routes>
    </div>
  );
}

Edit how-is-path-parameter-name-conflicts-handled-in-react-router-dom

enter image description here

Don't use the same path parameter twice in the same path string per route.

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