gpt4 book ai didi

.net - 在 Razor ViewEngine 中显示错误

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

如何输入有关错误的详细信息?
我正在尝试设置 customErrors modeOn/Off ,但我只有:Sorry, an error occurred while processing your request.

最佳答案

是的,一旦您启用 customErrors这是~/Views/Shared/Error.cshtml的内容你看到的文件。您可以自定义它。它被强类型化为 System.Web.Mvc.HandleErrorInfo模型,您可以提取其中的异常:

@model System.Web.Mvc.HandleErrorInfo

@{
View.Title = "Error";
}

<h2>
Sorry, an error occurred while processing your request.
</h2>

<div>@Model.Exception.ToString()</div>

您还可以访问在模型内引发异常的 Controller 和操作:
@Model.ControllerName
@Model.ActionName

关于.net - 在 Razor ViewEngine 中显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4387595/

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