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}
这是什么意思?
这是一个包罗万象的参数。如果您想使用它,它必须始终是最后一个,它会忽略任何斜线/。一个例子:
/
主页/索引/Foo/Bar/Baz
Controller将是Home,Action将是Index,parameters将是Foo/Bar/Baz。
Controller
Home
Action
Index
parameters
Foo/Bar/Baz
如果您{Controller}/{Action}/{parameters}改为使用,parameters则FooURL 的其余部分将丢失。
{Controller}/{Action}/{parameters}
Foo