Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ASP.NET MVC ルーティングで、ルートに「*」が表示されました。
{Controller}/{Action},{*parameters}
これは何を意味するのでしょうか?
これはキャッチオール パラメータです。使用する場合は、常に最後にする必要があり、スラッシュは無視されます/。例:
/
Home/Index/Foo/Bar/バズ
ControllerなるHome、ActionなるIndex、parametersなるFoo/Bar/Baz。
Controller
Home
Action
Index
parameters
Foo/Bar/Baz
{Controller}/{Action}/{parameters}代わりに使用しparametersていた場合Fooは、URL の残りの部分が失われます。
{Controller}/{Action}/{parameters}
Foo