ASP.NET MVC 异常处理

发布于 2024-08-07 20:49:12 字数 103 浏览 2 评论 0原文

可以在控制器的操作中捕获我的异常吗?有更好的方法吗?我实际上是在控制器中捕获异常并使用 TempData 向用户显示消息,但我对这种方法有一种奇怪的感觉。我一直在浏览,但没有找到适合我的东西。

Is it OK to catch my exceptions in the controller's actions? Is there any better way of doing it? I'm actually catching my exceptions in the controller and using TempData to show a message to the user, but I have a weird feeling about this approach. I've been browsing around but I haven't found anything that suits me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迎风吟唱 2024-08-14 20:49:12

您可以使用控制器类上的 HandleError 属性来捕获任何未处理的异常,它将自动返回共享文件夹中的 Error.aspx 视图。此属性有重载,因此您只能将其用于某些异常类型等。

有关此方法的更多信息,请查看 ScottGu 的相关帖子:http://weblogs.asp.net/scottgu/archive/2008/07 /14/asp-net-mvc-preview-4-release-part-1.aspx

You can use the HandleError attribute on the controller class to catch any unhandled exceptions and it will automatically return the Error.aspx view in the Shared folder. There are overloads for this attribute so you can only have it used for certain exception types, etc.

For more information on this approach, check out ScottGu's post about it: http://weblogs.asp.net/scottgu/archive/2008/07/14/asp-net-mvc-preview-4-release-part-1.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文