我有以下控制器操作:
public class Foo
{
public ActionResult Bar(int? barId)
{
...
}
}
此操作的相应路由由下式给出:
routes.MapRoute("Foobar", "bar/{barId}",
new { controller = "Foo", action = "Bar", barId = UrlParameter.Optional },
new { barId = @"^[0-9]+$" });
在我看来,我正在生成路线:
@Url.Action("Bar", "Foo", new { barId = bar.BarId })
对于bar.BarId = 32
,我收到预期的 URL/Foo/32
但我也想为null
值生成路由:
@Url.Action("Bar", "Foo", new { barId = (int?)null })
除此之外,我收到的 URL/Foo?barId=currentBarId
我当前正在查看的任何页面currentBarId
在barId
哪里。Bar
我究竟做错了什么?