繁体   English   中英

如何处理asp.net核心中的异常“无效文件签名”?

[英]how to handle an exception "Invalid file signature" in asp.net core?

我使用 .txt 文件而不是使用 excel 文件,所以我应该得到 400 错误,但我得到 500 错误。 我想捕获异常并发送带有适当响应正文的 400 响应代码。

[Route("file/")]
[AuthorizeFunction(AuthFunctions.Schema.Create)]
[HttpPost]
[ResponseType(typeof(Schema))]
public async Task<IActionResult> Create([FromBody] Guid fileId)
{
     var result = await _SchemaService.Create(fileId);
     return Created("GetSchema", new { id = result.Id }, result);
}

您可以使用此代码来捕获特定错误

[Route("file/")]
[AuthorizeFunction(AuthFunctions.Schema.Create)]
[HttpPost]
[ResponseType(typeof(Schema))]
public async Task<IActionResult> Create([FromBody] Guid fileId)
{
     try {
         var result = await _SchemaService.Create(fileId);
         return Created("GetSchema", new { id = result.Id }, result);
     }
     catch (Exception exc){
       if (exc.GetType().FullName == "Your_Exception_Name") 
       {
          // Check your exception name here
       }
   }
}

或者

catch(Exception ex)
{
  if(ex.InnerException is ExceptionInstance)// exception instance type you want to check
  {

  }
}

更新

您可以只使用catch(Exception ex)进行一般异常,然后返回BadRequest()

catch(Exception ex)
{
  return BadRequest();
}

暂无
暂无

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

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