简体   繁体   English

中间带有属性路由的 Web Api 可选参数

[英]Web Api Optional Parameters in the middle with attribute routing

So I'm testing some of my routing out with Postman and I can't seem to get this call to go through:所以我正在用Postman测试我的一些路由,但我似乎无法通过这个电话:

API Function接口函数

[RoutePrefix("api/Employees")]
public class CallsController : ApiController
{
    [HttpGet]
    [Route("{id:int?}/Calls/{callId:int?}")]
    public async Task<ApiResponse<object>> GetCall(int? id = null, int? callId = null)
    {
        var testRetrieve = id;
        var testRetrieve2 = callId;

        throw new NotImplementedException();
    }
}

Postman Requests邮递员请求

http://localhost:61941/api/Employees/Calls DOES NOT WORK http://localhost:61941/api/Employees/Calls 不起作用

Error:错误:

{
  "Message": "No HTTP resource was found that matches the request URI 'http://localhost:61941/api/Employees/Calls'.",
  "MessageDetail": "No action was found on the controller 'Employees' that matches the request."
}

http://localhost:61941/api/Employees/1/Calls WORKS http://localhost:61941/api/Employees/1/Calls WORKS

http://localhost:61941/api/Employees/1/Calls/1 WORKS http://localhost:61941/api/Employees/1/Calls/1 WORKS

Any idea why I can't use an optional between my prefix and the custom route?知道为什么我不能在前缀和自定义路由之间使用可选项吗? I've tried combining them into one custom route and that doesn't change anything, any time I try to cut out the id it causes problems.我试过将它们组合成一个自定义路由,这不会改变任何东西,任何时候我试图删除它都会导致问题的 id。

Optional parameters must be at the end of the route template.可选参数必须在路由模板的末尾。 so what you are trying to do is not possible.所以你试图做的事情是不可能的。

Attribute routing: Optional URI Parameters and Default Values 属性路由:可选的 URI 参数和默认值

you either change your route template你要么改变你的路线模板

[Route("Calls/{id:int?}/{callId:int?}")]

or create a new action或创建一个新动作

[RoutePrefix("api/Employees")]
public class CallsController : ApiController {

    //GET api/Employees/1/Calls
    //GET api/Employees/1/Calls/1
    [HttpGet]
    [Route("{id:int}/Calls/{callId:int?}")]
    public async Task<ApiResponse<object>> GetCall(int id, int? callId = null) {
        var testRetrieve = id;
        var testRetrieve2 = callId;

        throw new NotImplementedException();
    }

    //GET api/Employees/Calls
    [HttpGet]
    [Route("Calls")]
    public async Task<ApiResponse<object>> GetAllCalls() {
        throw new NotImplementedException();
    }
}

I would change the Route to:我会将路线更改为:

[Route("Calls/{id:int?}/{callId:int?}")]

and add the [FromUri] attribute to your parameters:并将[FromUri]属性添加到您的参数中:

([FromUri]int? id = null, [FromUri]int? callId = null)

My test function looks like this:我的测试函数如下所示:

[HttpGet]
[Route("Calls/{id:int?}/{callId:int?}")]
public async Task<IHttpActionResult> GetCall([FromUri]int? id = null, [FromUri]int? callId = null)
{
    var test = string.Format("id: {0} callid: {1}", id, callId);

    return Ok(test);
}

I can invoke it using:我可以使用以下方法调用它:

https://localhost/WebApplication1/api/Employees/Calls
https://localhost/WebApplication1/api/Employees/Calls?id=3
https://localhost/WebApplication1/api/Employees/Calls?callid=2
https://localhost/WebApplication1/api/Employees/Calls?id=3&callid=2

Actually you dont need to specify optional parameter in route实际上你不需要在路由中指定可选参数

[Route("Calls")]

or you need to change the route或者你需要改变路线

 [Route("Calls/{id:int?}/{callId:int?}")]
 public async Task<ApiResponse<object>> GetCall(int? id = null, int? callId = null)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM