gpt4 book ai didi

asp.net-core - 如何从 ASP.NET Core 异常中间件返回 404?

转载 作者:行者123 更新时间:2023-12-02 02:16:01 25 4
gpt4 key购买 nike

我的应用程序使用自定义 NotFoundException,我使用 ASP.NET 核心异常处理程序中间件拦截异常并返回 404 响应。

这是中间件的简化版本。

  public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
app.UseExceptionHandler(appBuilder => {
appBuilder.Run(async context => {
context.Response.StatusCode = (int)HttpStatusCode.NotFound;
var responseContent = new {
StatusCode = context.Response.StatusCode,
Message = "Not found"
};
await context.Response.WriteAsJsonAsync(responseContent);
});
});
...
}

我希望此代码返回内容为 JSON 的 404 响应,但请求只是出错。如果我使用 HttpClient 运行测试,我会收到以下错误:

System.Net.Http.HttpRequestException: 'Error while copying content to a stream.'

如果我将中间件中的状态代码更改为 404 以外的任何内容,它似乎会按预期工作。

// changing this line
context.Response.StatusCode = (int)HttpStatusCode.NotFound;
// to this line will successfully return the result
context.Response.StatusCode = (int)HttpStatusCode.BadRequest;

此 404 代码一直有效,直到我将目标框架从 netcoreapp3.1 更改为 net5.0。我需要更改什么才能在面向 net5.0 时从异常中间件成功返回带有 JSON 的 404?

最佳答案

问题似乎是从this update开始的到 ExceptionHandlerMiddleware。

添加此行修复了网站实时运行时的响应。

await context.Response.CompleteAsync();

但是这一行没有修复我使用 TestServer 的测试,因为 TestServer does not yet implement完全异步。

关于asp.net-core - 如何从 ASP.NET Core 异常中间件返回 404?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67164637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com