ASP.NET WEB API将DateTime作为URI的一部分传递给Controller

时间:2012-06-22 16:30:37

标签: asp.net-mvc rest asp.net-web-api

假设我有一个带有以下方法的控制器:

public int Get(DateTime date)
{
    // return count from a repository based on the date
}

我希望能够在将日期作为URI本身的一部分传递时访问方法,但是目前我只能在将日期作为查询字符串传递时才能使用它。例如:

Get/2012-06-21T16%3A49%3A54-05%3A00 // does not work
Get?date=2005-11-13%205%3A30%3A00 // works

我有什么想法可以让它发挥作用?我已尝试使用自定义MediaTypeFormatters,但即使我将它们添加到HttpConfiguration的Formatters列表中,它们似乎也从未执行过。

2 个答案:

答案 0 :(得分:3)

如果要将其作为URI本身的一部分传递,则必须考虑Global.asax中定义的默认路由。如果您尚未更改它,则表明URI在/ Controller / action / id中出现故障。

例如,uri'Home / Index / hello'在Ho​​meController类中转换为Index(“hello”)。

所以在这种情况下,如果你将DateTime参数的名称改为'id'而不是'date',它应该可以工作。

将参数类型从“DateTime”更改为“DateTime?”也可能更安全防止错误。作为第二个注释,mvc模式中的所有控制器方法都应该返回一个ActionResult对象。

祝你好运!

答案 1 :(得分:3)

让我们看看你的默认MVC路由代码:

routes.MapRoute(
            "Default",
            "{controller}/{action}/{id}",
            new {controller = "Home", action = "Index", **id** = UrlParameter.Optional}
            );

好。看到名称ID?您需要将方法参数命名为“id”,以便模型绑定器知道您要绑定它。

使用此 -

public int Get(DateTime id)// Whatever id value I get try to serialize it to datetime type.
{ //If I couldn't specify a normalized NET datetime object, then set id param to null.
    // return count from a repository based on the date
}