1

このスキーマに一致するルートを無視する必要があります

/{controller}/edit/undefined

{コントローラー}-任意のコントローラーにすることができます

ところで、いつIgnoreを使用するのか、いつIgnoreRouteを使用するのか疑問に思いました。

4

1 に答える 1

2

You could add the following at the beginning of your route definitions:

routes.IgnoreRoute("{controller}/edit/undefined");

BTW I was wondering when to use Ignore and when IgnoreRoute.

It's the same thing. IgnoreRoute is an extension method that does the same as Ignore.

于 2012-06-20T07:58:22.423 に答える