多个可选查询字符串参数REST API GET

Nic*_*vic 8 c# rest asp.net-web-api asp.net-web-api2

我正在使用web api 2来实现一个宁静的服务.在对最佳实践进行一些研究之后,每个人似乎都对如何做以下事情有不同的看法.我有一个GET

public HttpResponseMessage Get(string crewId, string shiftDate, int offset = 1, int limit = 10)
Run Code Online (Sandbox Code Playgroud)

此GET方法返回一个列表.有多种方法可以从此方法获取数据.

  • 仅限crewId
  • 仅限shiftDate
  • 要么
  • 通过crewId和shiftDate获取
  • 你(1)将crewId和shiftDate标记为可选吗?

    public HttpResponseMessage Get(string crewId = null, string shiftDate = null, int offset = 1, int limit = 10)
    
    Run Code Online (Sandbox Code Playgroud)

    然后有一堆if语句来检查填充的内容和未填充的内容以便能够执行操作

    if(crewId != null && shiftDate == null){
      // Get by crewId
    }else if(crewId == null && shiftDate != null){
      // Get By shiftDate
    }else if(crewId != null && shiftDate != null){
      // Get By crewId and shiftDate
    }
    
    Run Code Online (Sandbox Code Playgroud)

    对我来说这看起来很疯狂,特别是如果你有很多参数,你的代码中会有太多"if"语句.

    你(2)有不同的获取?

    public HttpResponseMessage GetByCrewId(string crewId, int offset = 1, int limit = 10)
    public HttpResponseMessage GetByShiftDate(string shiftDate, int offset = 1, int limit = 10)
    public HttpResponseMessage GetByCrewIdShiftDate(string crewId, string shiftDate, int offset = 1, int limit = 10)
    
    Run Code Online (Sandbox Code Playgroud)

    然后你将URI路由映射到方法

  • .../API/GetByCrewId?crewId = 1234
  • .../API/GetByShiftDate?shiftDate = 1111年11月11日
  • .../API/GetByCrewIdShiftDate?crewId = 1234&shiftDate = 1111年11月11日
  • 选项2是否宁静?

    或者有更好的选择(3).

    上述两个选项都可以确保我使用最佳实践并遵循REST标准.看起来我错过了什么,希望你能把我放在正确的方向.

    Ant*_*ony 5

    您不希望选项(2) - 在您的URL中想要名词是RESTful.

    所以你希望你的网址看起来像:

    /api/items/?crewId=1234&shiftDate=1111-11-11
    
    Run Code Online (Sandbox Code Playgroud)

    (根据'Crew'和'Shift'参数名称,我无法弄清楚你的物品是什么.什么有船员和轮班日期?钓鱼之旅?如果是这样,网址会更好//api /钓鱼人次/?crewId = ....&shiftDate = ...

    至于控制器,我会去做类似的事情:

    public HttpResponseMessage Get(string crewId = null, string shiftDate = null, int offset = 1, int limit = 10) {
    
        return dataSource.Where(x=> (x.CrewId == crewId || crewId == null)
                && (x.ShiftDate == shiftDate || shiftDate == null));
    }
    
    Run Code Online (Sandbox Code Playgroud)


    McA*_*hey 5

    查看最佳实践:了解 REST 标头和参数它指出,查询参数的使用将表明它是可选的。如果您可以将单个值设为必需值而其他值设为可选值,则可能有助于澄清 URI。

    /api/fishing-trips/crew/{crewid}?shiftdate=1111-11-11
    
    Run Code Online (Sandbox Code Playgroud)

    最后,如果您的项目都是可选的,那么使用“?” 可能是最好的路线。RFC 6570中提供了有关参数类型的更多信息。

    请注意,您的选择可能会影响您选择使用的任何队列,并且路径样式参数扩展可能最有意义。更多信息也在了解 REST 参数

    最后,您可能希望将这些创建为搜索参数,然后,如果您发现您的用户经常请求相同的搜索,您可以将其打包到单个 REST 路径中。

    例如,

    /api/fishing-trips/search?crew=1234
    /api/fishing-trips/search?shiftDate=1111-11-11
    /api/fishing-trips/search?crew=1234&shiftDate=1111-11-11
    
    Run Code Online (Sandbox Code Playgroud)

    您还可以提供简化以及可选参数,例如,

    /api/fishing-trips/today
    /api/fishing-trips/today?crew=1234
    /api/fishing-trips/crew/1234/today
    
    Run Code Online (Sandbox Code Playgroud)

    根据我的研究,最后的这些示例是主观的,但更多信息可在实用 Rest API 的最佳实践搜索的 RESTful URL 设计中获得


    Gab*_*uci 2

    我以前做过类似的事情。由于您可以使用其中之一或两者,我将使用可选参数:

    public HttpResponseMessage Get(string crewId = null, string shiftDate = null, int offset = 1, int limit = 10)
    
    Run Code Online (Sandbox Code Playgroud)

    然后构建您的查询。例如,这样的事情:

    var query = "";
    if (!String.IsNullOrEmpty(crewId)) {
      query += $"crewId='{crewId}'";
    }
    if (!String.IsNullOrEmpty(shiftDate)) {
      if (query.Length > 0) query += " AND ";
      query += $"shiftDate='{shiftDate}'";
    }
    if (query.Length == 0) {
      //neither crewId or shiftDate were given
      //return some kind of error
    }
    
    Run Code Online (Sandbox Code Playgroud)