ASP.NET Core WebAPI 2 PUT方法名称

问题描述 投票:3回答:1

我已经挣扎了一段时间,似乎无法让这个工作。

我有一个控制器,说“老师”。

我想要一个具有不同名称的PUT动作,但接受[FromBody]复杂的DTO。

我怎么能调用它?我尝试的一切都给了我一个404。

[Produces("application/json")]
[Route("api/Teacher")]
public class TeacherController : Controller
{
    private readonly ITeacherService _teacherService;

    public TeacherController(ITeacherService teacherService)
    {
        this._teacherService = teacherService;
    }

    [HttpPut("UpdateTeacherForInterview")]
    public IActionResult PutTeacherForInterview(int id, [FromBody]UpdateInterviewModel model)
    {
        return Ok();
    }
}

我试过了(哭了!):

PUT /api/Teacher/1 (and complex object)

PUT /api/Teacher/UpdateTeacherForInterview/1 (and complex object)

PUT /api/Teacher/PutTeacherForInterview/1 (and complex object)

我总是得到404。

简单的Put工作,即:

[HttpPut]
public IActionResult Put(int id, [FromBody]string value)
{
    return Ok();
}

但我想使用不同的动作名称。

思考?

c# asp.net-core-webapi asp.net-core-routing
1个回答
3
投票

路由模板与被调用的URL不匹配

//Matches PUT api/Teacher/UpdateTeacherForInterview/1
[HttpPut("UpdateTeacherForInterview/{id:int}")]
public IActionResult PutTeacherForInterview(int id, [FromBody]UpdateInterviewModel model) {
    return Ok();
}

参考Routing to Controller Actions

© www.soinside.com 2019 - 2024. All rights reserved.