Skip to main content
Basic Svelte
Introduction
Reactivity
Props
Logic
Events
Bindings
Classes and styles
Actions
Transitions
Advanced Svelte
Advanced reactivity
Reusing content
Motion
Advanced bindings
Advanced transitions
Context API
Special elements
<script module>
Next steps
Basic SvelteKit
Introduction
Routing
Loading data
Headers and cookies
Shared modules
Forms
API routes
$app/state
Errors and redirects
Advanced SvelteKit
Hooks
Page options
Link options
Advanced routing
Advanced loading
Environment variables
Conclusion

ルーターが無効な入力にマッチするのを防ぐために、 matcher を指定することができます。例えば、/colors/[value] のようなルート(route)を、/colors/ff3e00 のような16進数の値(hex value)にマッチさせたいけれど、/colors/octarine のような色の名前やその他の任意の入力にはマッチさせたくないことがあるでしょう。

まず、src/params/hex.js という新しいファイルを作成し、そこから match 関数をエクスポートしてください。

src/params/hex
export function match(value) {
	return /^[0-9a-f]{6}$/.test(value);
}

それから、その新しい matcher を使うために、src/routes/colors/[color]src/routes/colors/[color=hex] にリネームしてください。

これで、誰かがこのルート(route)に移動してきたときはいつでも、SvelteKit が color が有効な hex value か検証します。違った場合、SvelteKit は、他のルート(routes)にマッチするか試行し、どれにもマッチしない場合は最終的に 404 を返します。

Matcher はサーバーとブラウザの両方で動作します。

Edit this page on GitHub

1
2
<h1>color picker</h1>