gpt4 book ai didi

asp.net-core - UseStatusCodePagesWithReExecute 执行原始请求两次,没有针对 NotFound 结果的错误响应

转载 作者:行者123 更新时间:2023-12-05 02:58:15 24 4
gpt4 key购买 nike

我一直在尝试为返回 NotFound 结果的页面请求显示自定义 404 错误页面时,在 dotnet razor 页面 Web 应用程序中遇到 UseStatusCodePagesWithReExecute 问题。具体来说,如果我从 OnGet 方法返回 NotFound,我发现相同的请求被再次调用,并且永远不会重新执行提供给中间件的路径。

我使用的是 .NET Core 3.0,所以没有尝试过以前的版本或 3.1 预览版。

我已经通过简单的重现成功地重现了这个问题。以下将允许无效路由重定向到错误页面(例如 https://localhost:5001/foo),但是,路由 https://localhost:5001/ 将被调用两次并且不会重定向到错误页面。

所以我要问的问题是,这是一个错误还是我在这里遗漏了一些概念?我已经尝试了相关的 UseStatusCodePagesWithRedirects 方法,它做了它应该做的事情,但如果可以的话,我真的很想使用 ReExecute。

复制

环境:

  • Windows 10
  • 网络核心 3.0
  • chrome 和 edge 浏览器(未尝试其他浏览器)- 无论如何不要认为这是浏览器问题,因为没有重新提交。

步骤:

  1. 创建模板 razor 项目 dotnet new webapp -n myapp
  2. 编辑 Index.cshtml.cs OnGet 方法如下:
        public IActionResult OnGet()
{
return NotFound();
}
  1. 编辑 Startup.cs 并在 Configure 方法中的 if/else 代码块之后添加 app.UseStatusCodePagesWithReExecute("/Error");,如下所示:
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}

// Added this line
app.UseStatusCodePagesWithReExecute("/Error");

app.UseHttpsRedirection();
app.UseStaticFiles();

app.UseRouting();

app.UseAuthorization();

app.UseEndpoints(endpoints =>
{
endpoints.MapRazorPages();
});
}
  1. 在第一行的 OnGet 中放置一个断点(假设是 VSCode 或 Visual Studio 2019)。
  2. 运行调试并按 F5 将第一个请求转到索引页面。没有发生到 /Error 的重定向,而是再次命中断点。
  3. 再次按 F5,然后浏览器显示其标准 404 而不是错误页面。

提前致谢。

最佳答案

StatusCodePages 中间件有 3 个方法来显示自定义错误页面,它们是UseStatusCodePagesUseStatusCodePagesWithReditectsUseStatusCodePagesWithReExecute。如果您想在访问 https://localhost:5001/ 时返回 NotFound 结果通过编辑 Index.cshtml.cs OnGet 方法,您应该使用 UseStatusCodePages 来自定义您的 404 错误页面,而不是 UseStatusCodePagesWithReExecute.

不过,如果您坚持使用 UseStatusCodePagesWithReExecute,则不需要返回真正的 NotFoundUseStatusCodePagesWithReExecute 用于不存在的资源。一旦您访问 https://localhost:5001/any-non-exisisting-page ,它会抛出404然后重新执行一个你自己错误页面的请求。但它不是 NotFound 方法的替代品。同时,在使用UseStatusCodePagesWithReExecute时要注意一些条件和限制,可以引用这篇文章:https://learn.microsoft.com/en-us/aspnet/core/fundamentals/error-handling?view=aspnetcore-3.1 .

这是一个工作示例。

  1. 编辑 Startup.cs 配置方法,如下所示:

    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
    if (env.IsDevelopment())
    {
    //app.UseDeveloperExceptionPage();
    }
    else
    {
    // app.UseExceptionHandler("/Error");
    // The default HSTS value is 30 days. You may want to change this for
    production scenarios, see https://aka.ms/aspnetcore-hsts.
    // app.UseHsts();
    }

    //app.UseStatusCodePages();
    app.UseStatusCodePagesWithReExecute("/Error", "?code={0}");
    // app.UseHttpsRedirection();

    app.UseStaticFiles();

    //app.UseStatusCodePagesWithRedirects("/Error");

    app.UseRouting();

    app.UseAuthorization();

    app.UseEndpoints(endpoints =>
    {
    endpoints.MapRazorPages();
    });

    }
  2. 将@page "{code?}"添加到 Error.cshtml:

@page "{code?}"
@model ErrorModel
@{
ViewData["Title"] = "Error";
}

<h1 class="text-danger">Error.</h1>
<h1 class="text-danger">Status Code: @Model.ErrorStatusCode</h1>

<h2 class="text-danger">An error occurred while processing your request.</h2>

@if (Model.ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@Model.RequestId</code>
</p>
}

<h3>Development Mode</h3>
<p>
Swapping to the <strong>Development</strong> environment displays detailed information about the error that occurred.
</p>
<p>
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
It can result in displaying sensitive information from exceptions to end users.
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
and restarting the app.
</p>

  1. 访问https://localhost:52602/hhh时这是Edge中不存在的页面,浏览器显示此页面:

enter image description here

关于asp.net-core - UseStatusCodePagesWithReExecute 执行原始请求两次,没有针对 NotFound 结果的错误响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59143058/

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