Неподдерживаемый тип носителя в ASP.Net Core 2.2 ApiController - PullRequest
0 голосов
/ 02 мая 2019

У меня есть следующие контроллер и действия:

[ApiController, ApiVersion("1.0", Deprecated = false), Route("v{version:version}")]
public class PostController : ControllerBase {

  [HttpGet("users/{userId}/posts")]
  public async Task<IActionResult> GetByUserId(GetModel model) {

  }

  [HttpPost("users/{userId}/posts")]
  public async Task<IActionResult> CreateByUserId(CreateModel model) {

  }

}

Я пытался получить доступ к обоим действиям, используя Angular и Бессонница ...

У меня есть доступCreateByUserId [POST], но я получаю сообщение об ошибке GetByUserId [GET]:

{
  "type": "https://tools.ietf.org/html/rfc7231#section-6.5.13",
  "title": "Unsupported Media Type",
  "status": 415,
  "traceId": "0HLMF7BM7U94L:00000001"
}

Чего мне не хватает?Действие - это простое действие Get.

...