@react-router/fs-routes
包支持基于文件约定的路由配置。
首先安装 @react-router/fs-routes
包
npm i @react-router/fs-routes
然后使用它在你的 app/routes.ts
文件中提供路由配置
import { type RouteConfig } from "@react-router/dev/routes";
import { flatRoutes } from "@react-router/fs-routes";
export default flatRoutes() satisfies RouteConfig;
默认情况下,它将在 app/routes
目录中查找路由,但这可以通过相对于应用程序目录的 rootDirectory
选项进行配置
import { type RouteConfig } from "@react-router/dev/routes";
import { flatRoutes } from "@react-router/fs-routes";
export default flatRoutes({
rootDirectory: "file-routes",
}) satisfies RouteConfig;
本指南的其余部分将假设您使用的是默认的 app/routes
目录。
app/routes
目录中的任何模块都将成为应用程序中的路由。文件名映射到路由的 URL 路径名,除了 _index.tsx
,它是 根路由 的 索引路由。您可以使用 .js
、.jsx
、.ts
或 .tsx
文件扩展名。
app/
├── routes/
│ ├── _index.tsx
│ └── about.tsx
└── root.tsx
URL | 匹配的路由 |
---|---|
/ |
app/routes/_index.tsx |
/about |
app/routes/about.tsx |
请注意,由于 嵌套路由,这些路由将在 app/root.tsx
的出口处渲染。
在路由文件名中添加一个 .
将在 URL 中创建一个 /
。
app/
├── routes/
│ ├── _index.tsx
│ ├── about.tsx
│ ├── concerts.trending.tsx
│ ├── concerts.salt-lake-city.tsx
│ └── concerts.san-diego.tsx
└── root.tsx
URL | 匹配的路由 |
---|---|
/ |
app/routes/_index.tsx |
/about |
app/routes/about.tsx |
/concerts/trending |
app/routes/concerts.trending.tsx |
/concerts/salt-lake-city |
app/routes/concerts.salt-lake-city.tsx |
/concerts/san-diego |
app/routes/concerts.san-diego.tsx |
点分隔符还会创建嵌套,有关更多信息,请参阅 嵌套部分。
通常,您的 URL 不是静态的,而是数据驱动的。动态片段允许您匹配 URL 的片段并在代码中使用该值。您可以使用 $
前缀创建它们。
app/
├── routes/
│ ├── _index.tsx
│ ├── about.tsx
│ ├── concerts.$city.tsx
│ └── concerts.trending.tsx
└── root.tsx
URL | 匹配的路由 |
---|---|
/ |
app/routes/_index.tsx |
/about |
app/routes/about.tsx |
/concerts/trending |
app/routes/concerts.trending.tsx |
/concerts/salt-lake-city |
app/routes/concerts.$city.tsx |
/concerts/san-diego |
app/routes/concerts.$city.tsx |
该值将从 URL 中解析并传递到各种 API。我们将这些值称为“URL 参数”。访问 URL 参数最有用的地方是在 加载器 和 操作 中。
export async function serverLoader({ params }) {
return fakeDb.getAllConcertsForCity(params.city);
}
您会注意到 params
对象上的属性名称直接映射到您的文件名:$city.tsx
变成 params.city
。
路由可以有多个动态片段,例如 concerts.$city.$date
,两者都通过名称在 params 对象上访问
export async function serverLoader({ params }) {
return fake.db.getConcerts({
date: params.date,
city: params.city,
});
}
有关更多信息,请参阅 路由指南。
嵌套路由是将 URL 的片段与组件层次结构和数据耦合的通用概念。您可以在 路由指南 中阅读更多相关内容。
您可以使用 点分隔符 创建嵌套路由。如果 .
之前的文件名与另一个路由文件名匹配,它将自动成为匹配父路由的子路由。考虑以下路由
app/
├── routes/
│ ├── _index.tsx
│ ├── about.tsx
│ ├── concerts._index.tsx
│ ├── concerts.$city.tsx
│ ├── concerts.trending.tsx
│ └── concerts.tsx
└── root.tsx
所有以 app/routes/concerts.
开头的路由都将是 app/routes/concerts.tsx
的子路由,并在 父路由的出口 中渲染。
URL | 匹配的路由 | 布局 |
---|---|---|
/ |
app/routes/_index.tsx |
app/root.tsx |
/about |
app/routes/about.tsx |
app/root.tsx |
/concerts |
app/routes/concerts._index.tsx |
app/routes/concerts.tsx |
/concerts/trending |
app/routes/concerts.trending.tsx |
app/routes/concerts.tsx |
/concerts/salt-lake-city |
app/routes/concerts.$city.tsx |
app/routes/concerts.tsx |
请注意,当您添加嵌套路由时,通常希望添加一个索引路由,以便当用户直接访问父 URL 时,在父路由的出口处渲染某些内容。
例如,如果 URL 为 /concerts/salt-lake-city
,则 UI 层次结构将如下所示
<Root>
<Concerts>
<City />
</Concerts>
</Root>
有时您希望 URL 嵌套,但不想自动布局嵌套。您可以使用父片段后面的尾部下划线选择退出嵌套
app/
├── routes/
│ ├── _index.tsx
│ ├── about.tsx
│ ├── concerts.$city.tsx
│ ├── concerts.trending.tsx
│ ├── concerts.tsx
│ └── concerts_.mine.tsx
└── root.tsx
URL | 匹配的路由 | 布局 |
---|---|---|
/ |
app/routes/_index.tsx |
app/root.tsx |
/about |
app/routes/about.tsx |
app/root.tsx |
/concerts/mine |
app/routes/concerts_.mine.tsx |
app/root.tsx |
/concerts/trending |
app/routes/concerts.trending.tsx |
app/routes/concerts.tsx |
/concerts/salt-lake-city |
app/routes/concerts.$city.tsx |
app/routes/concerts.tsx |
请注意,/concerts/mine
不再与 app/routes/concerts.tsx
嵌套,而是与 app/root.tsx
嵌套。trailing_
下划线创建路径片段,但不创建布局嵌套。
将 trailing_
下划线视为父签名末尾的长位,将您写出遗嘱,从布局嵌套中删除后续的片段。
我们称这些为 无路径路由
有时您希望与一组路由共享布局,而无需在 URL 中添加任何路径片段。一个常见的示例是一组身份验证路由,它们与公共页面或已登录的应用程序体验具有不同的页眉/页脚。您可以使用 _leading
下划线执行此操作。
app/
├── routes/
│ ├── _auth.login.tsx
│ ├── _auth.register.tsx
│ ├── _auth.tsx
│ ├── _index.tsx
│ ├── concerts.$city.tsx
│ └── concerts.tsx
└── root.tsx
URL | 匹配的路由 | 布局 |
---|---|---|
/ |
app/routes/_index.tsx |
app/root.tsx |
/login |
app/routes/_auth.login.tsx |
app/routes/_auth.tsx |
/register |
app/routes/_auth.register.tsx |
app/routes/_auth.tsx |
/concerts |
app/routes/concerts.tsx |
app/routes/concerts.tsx |
/concerts/salt-lake-city |
app/routes/concerts.$city.tsx |
app/routes/concerts.tsx |
将 _leading
下划线视为您拉在文件名上的毯子,隐藏文件名以防止出现在 URL 中。
将路由片段括在括号中会使该片段成为可选的。
app/
├── routes/
│ ├── ($lang)._index.tsx
│ ├── ($lang).$productId.tsx
│ └── ($lang).categories.tsx
└── root.tsx
URL | 匹配的路由 |
---|---|
/ |
app/routes/($lang)._index.tsx |
/categories |
app/routes/($lang).categories.tsx |
/en/categories |
app/routes/($lang).categories.tsx |
/fr/categories |
app/routes/($lang).categories.tsx |
/american-flag-speedo |
app/routes/($lang)._index.tsx |
/en/american-flag-speedo |
app/routes/($lang).$productId.tsx |
/fr/american-flag-speedo |
app/routes/($lang).$productId.tsx |
您可能想知道为什么 /american-flag-speedo
匹配 ($lang)._index.tsx
路由而不是 ($lang).$productId.tsx
。这是因为当您有一个可选的动态参数片段后跟另一个动态参数时,无法可靠地确定诸如 /american-flag-speedo
的单个片段 URL 应该匹配 /:lang
/:productId
。可选片段会急切地匹配,因此它将匹配 /:lang
。如果您有这种设置,建议查看 ($lang)._index.tsx
加载器中的 params.lang
,如果 params.lang
不是有效的语言代码,则重定向到 /:lang/american-flag-speedo
以获取当前/默认语言。
虽然 动态片段 匹配单个路径片段(URL 中两个 /
之间的内容),但通配符路由将匹配 URL 的其余部分,包括斜杠。
app/
├── routes/
│ ├── _index.tsx
│ ├── $.tsx
│ ├── about.tsx
│ └── files.$.tsx
└── root.tsx
URL | 匹配的路由 |
---|---|
/ |
app/routes/_index.tsx |
/about |
app/routes/about.tsx |
/beef/and/cheese |
app/routes/$.tsx |
/files |
app/routes/files.$.tsx |
/files/talks/react-conf_old.pdf |
app/routes/files.$.tsx |
/files/talks/react-conf_final.pdf |
app/routes/files.$.tsx |
/files/talks/react-conf-FINAL-MAY_2024.pdf |
app/routes/files.$.tsx |
类似于动态路由参数,您可以使用 "*"
键在通配符路由的 params
上访问匹配路径的值。
export async function serverLoader({ params }) {
const filePath = params["*"];
return fake.getFileInfo(filePath);
}
如果希望这些路由约定的特殊字符之一实际上成为 URL 的一部分,则可以使用 []
字符转义约定。这对于 资源路由(在 URL 中包含扩展名)特别有用。
文件名 | URL |
---|---|
app/routes/sitemap[.]xml.tsx |
/sitemap.xml |
app/routes/[sitemap.xml].tsx |
/sitemap.xml |
app/routes/weird-url.[_index].tsx |
/weird-url/_index |
app/routes/dolla-bills-[$].tsx |
/dolla-bills-$ |
app/routes/[[so-weird]].tsx |
/[so-weird] |
`app/routes/reports.$id[.pdf].ts | `/reports/123.pdf |
路由也可以是包含定义路由模块的 route.tsx
文件的文件夹。文件夹中的其余文件将不会成为路由。这允许您将代码组织得更接近使用它们的路由,而不是在其他文件夹中重复功能名称。
文件夹内的文件对路由路径没有任何意义,路由路径完全由文件夹名称定义。
考虑以下路由
app/
├── routes/
│ ├── _landing._index.tsx
│ ├── _landing.about.tsx
│ ├── _landing.tsx
│ ├── app._index.tsx
│ ├── app.projects.tsx
│ ├── app.tsx
│ └── app_.projects.$id.roadmap.tsx
└── root.tsx
其中一些或所有这些都可以是包含其自身 route
模块的文件夹。
app/
├── routes/
│ ├── _landing._index/
│ │ ├── route.tsx
│ │ └── scroll-experience.tsx
│ ├── _landing.about/
│ │ ├── employee-profile-card.tsx
│ │ ├── get-employee-data.server.ts
│ │ ├── route.tsx
│ │ └── team-photo.jpg
│ ├── _landing/
│ │ ├── footer.tsx
│ │ ├── header.tsx
│ │ └── route.tsx
│ ├── app._index/
│ │ ├── route.tsx
│ │ └── stats.tsx
│ ├── app.projects/
│ │ ├── get-projects.server.ts
│ │ ├── project-buttons.tsx
│ │ ├── project-card.tsx
│ │ └── route.tsx
│ ├── app/
│ │ ├── footer.tsx
│ │ ├── primary-nav.tsx
│ │ └── route.tsx
│ ├── app_.projects.$id.roadmap/
│ │ ├── chart.tsx
│ │ ├── route.tsx
│ │ └── update-timeline.server.ts
│ └── contact-us.tsx
└── root.tsx
请注意,当您将路由模块转换为文件夹时,路由模块将成为 folder/route.tsx
,文件夹中的所有其他模块将不会成为路由。例如
# these are the same route:
app/routes/app.tsx
app/routes/app/route.tsx
# as are these
app/routes/app._index.tsx
app/routes/app._index/route.tsx