学海无涯

导航

APS.NET Core 返回状态

IActionResult 类型

当操作中可能有多个 ActionResult 返回类型时,适合使用 IActionResult 返回类型。 ActionResult 类型表示多种 HTTP 状态代码。 派生自 ActionResult 的任何非抽象类都限定为有效的返回类型。 此类别中的某些常见返回类型为 BadRequestResult (400)、NotFoundResult (404) 和 OkObjectResult (200)。 或者,可以使用 ControllerBase 类中的便利方法从操作返回 ActionResult 类型。 例如,return BadRequest(); 是 return new BadRequestResult(); 的简写形式。

posted on 2024-05-08 09:12  宁静致远.  阅读(17)  评论(0编辑  收藏  举报