我正在使用WebAPI .Net Core 2.2,我已经成功添加了swagger,并且可以从swagger UI中创建POST或GET请求。但是当我从Postman执行端点时,什么也没发生。在端点上击中了断点,但邮递员用户界面上未显示正确的结果
[HttpPost]
[Route("Details/{year:int}/Directors")]
public ActionResult DirectoryMoviesByYear(int year)
{
//sample code
return Ok(new Director { Id=1, Name="Peter Jackson" });
}
邮递员中使用的终点 https://localhost:44386/api/Movie/Details/1980/Directors
这是大张旗鼓的屏幕截图 result from swagger 这是邮递员的屏幕截图 enter image description here