Asp.Net核心路由默认操作

时间:2019-07-09 13:34:41

标签: c# asp.net asp.net-mvc asp.net-core

我有一个Asp.net Core应用程序,并且使用这样的路由。

1  2  3  4
1  2  3  4
1  2  3  4
1  2  3  4

如果我不使用默认参数,我的URL助手会生成错误的URL地址。 例如

routes.MapRoute(
    name: "Address",
    template: "adress-info/{action}/{id?}",
    defaults: new { controller = "Address", action = "Index" }
);

为什么不应用MapRoute的默认操作?有什么问题吗?

谢谢

0 个答案:

没有答案