我有一个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的默认操作?有什么问题吗?
谢谢