0

我有以下控制器操作:

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

我当前正在查看的任何页面currentBarIdbarId哪里。Bar

我究竟做错了什么?

4

1 回答 1

1

改变你的约束:

new { barId = @"^[0-9]*$" }

这将允许此路线为空barId

于 2013-03-29T15:35:21.223 回答