要匹配未知数量的路径段,请使用[...rest]
参数,之所以这样命名是因为它类似于JavaScript 中的其余参数。
将src/routes/[path]
重命名为src/routes/[...path]
。该路由现在匹配任何路径。
其他更具体的路由将首先被测试,这使得其余参数可用作“捕获所有”路由。例如,如果您需要一个用于
/categories/...
内部页面的自定义 404 页面,您可以添加这些文件src/routes/ ├ categories/ │ ├ animal/ │ ├ mineral/ │ ├ vegetable/ │ ├ [...catchall]/ │ │ ├ +error.svelte │ │ └ +page.server.js
在
+page.server.js
文件中,在load
内部使用error(404)
。
其余参数**不必**放在最后——像/items/[...path]/edit
或/items/[...path].json
这样的路由完全有效。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<script>
import { page } from '$app/stores';
let words = ['how', 'deep', 'does', 'the', 'rabbit', 'hole', 'go'];
let depth = $derived($page.params.path.split('/').filter(Boolean).length);
let next = $derived(depth === words.length ? '/' : `/${words.slice(0, depth + 1).join('/')}`);
</script>
<div class="flex">
{#each words.slice(0, depth) as word}
<p>{word}</p>
{/each}
<p><a href={next}>{words[depth] ?? '?'}</a></p>
</div>
<style>
.flex {
display: flex;
height: 100%;
flex-direction: column;
align-items: center;
justify-content: center;
}
p {
margin: 0.5rem 0;
line-height: 1;
}
a {
display: flex;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
font-size: 4rem;
}
</style>