在不使用OData约定的情况下传递查询字符串参数?

时间:2012-06-05 05:14:07

标签: c# asp.net-mvc-4 asp.net-web-api asp.net-mvc-routing

有没有办法将querystring参数传递给ASP.NET MVC4 Web Api控制器而不使用此处概述的OData约定?

http://www.asp.net/web-api/overview/web-api-routing-and-actions/paging-and-querying

我有一些使用Dapper构建的存储库方法,它们不支持IQueryable,并且希望能够在不使用OData约定的情况下手动对它们进行分页,但每当我尝试使用传统的ASP.NET方式时,我会“找不到路由” “错误。

例如,这是一条路线:

context.Routes.MapHttpRoute(
           name: "APIv1_api_pagination",
           routeTemplate: "api/v1/{controller}/{id}",
           defaults: new { area = AreaName, controller = "category", offset = 0, count = 100});

这是匹配的签名

public class CategoryController : ApiController
{
    // GET /api/<controller>
    public HttpResponseMessage Get(int id, int offset = 0, int count = 0)

每当我传递以下查询时:

http://localhost/api/v1/category/1?offset=10

我收到以下错误:

  

在控制器“类别”上找不到与之匹配的操作   请求。

有关如何在ASP.NET MVC4 Web Api中使用查询字符串的任何建议吗?

2 个答案:

答案 0 :(得分:11)

当你开始使用查询字符串时,你实际上用它的参数调用控制器的精确方法。我更喜欢你改变你的路由器:

context.Routes.MapHttpRoute(
       name: "APIv1_api_pagination",
       routeTemplate: "api/v1/{controller}/{action}/{id}",
       defaults: new { area = AreaName, controller = "category", offset = 0, count = 100});

然后将您的方法更改为

public HttpResponseMessage Items(int id, int offset = 0, int count = 0);

从现在开始,无论何时查询

http://localhost/api/v1/category/Items?id=1&offset=10&count=0

它会运行。

写这篇文章时,我想到了另一种方法。我不知道它是否有效,但尝试改变路由器,如

context.Routes.MapHttpRoute(
       name: "APIv1_api_pagination",
       routeTemplate: "api/v1/{controller}/{id}/{offset}/{count}",
       defaults: new { area = AreaName, controller = "category", offset = RouteParameter.Optional, count = RouteParameter.Optional});

答案 1 :(得分:3)

在这个例子中,我遇到的问题是我在WebApi控制器实例上有多次GET重载。当我删除那些(并将所有内容压缩为一个带有更多可选参数的Get方法和方法本身内的控制流)时,一切都按预期工作。