我注册了一条路线:
routes.MapRoute(
"Journals",
"Journals/{year}/{month}/{id}",
new {
controller = "Journals",
action = "Get",
year = UrlParameter.Optional,
month = UrlParameter.Optional,
id = UrlParameter.Optional
}
);
行动:
public ActionResult Get(int? year, int? month, int? id)
稍后查看(仅供检查):
@Url.Action("Get", "Journals")
@Url.Action("Get", "Journals", new { year = 2013 })
@Url.Action("Get", "Journals", new { year = 2013, month = 4 })
@Url.Action("Get", "Journals", new { year = 2013, month = 4, id = 1 })
结果是:
/Journals
/Journals
/Journals/2013/4
/Journals/2013/4/1
因此,第二个URL缺少该参数。怎么了?
最佳答案
您不能有超过1个连续的可选路由参数..因为它无法了解缺少哪个。
/ Journals / 2013 中的2013可以解释为year
或month
或id
有关使用全部路由参数的解决方法,请参见Infinite URL Parameters for ASP.NET MVC Route。