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.
我需要忽略匹配此架构的路由
/{controller}/edit/undefined
{controller} - 可以是任何控制器
顺便说一句,我想知道何时使用 Ignore 以及何时使用 IgnoreRoute。
您可以在路由定义的开头添加以下内容:
routes.IgnoreRoute("{controller}/edit/undefined");
这是同一件事。IgnoreRoute是一种扩展方法,与Ignore.
IgnoreRoute
Ignore