在哪里捕获自定义 ModelBinder 的异常

发布于 2024-08-14 12:52:36 字数 208 浏览 10 评论 0原文

我有一个自定义的 ModelBinder,它使用这样的代码将 Web 与对象绑定“

    [ModelBinder(typeof(CustomizedModelBinder))]
    public class Widget{ ... }

此 modelbinder 可能会抛出异常,我应该在哪里添加代码来捕获这些异常?提前致谢!

I have a customized ModelBinder which bind web from with a object using code like this"

    [ModelBinder(typeof(CustomizedModelBinder))]
    public class Widget{ ... }

This modelbinder may throw exceptions and where should I add code to catch those exceptions? Thanks in advance!

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

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

发布评论

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

评论(1

一抹淡然 2024-08-21 12:52:36

从设计的角度来看,模型绑定器最好添加模型错误而不是抛出异常:

ModelState.AddModelError("Phone", "Phone number is invalid.");

这样,稍后在您的操作中您可以检查模型是否有效:

if (!ModelState.IsValid)
{
    ...
}

From design perspective it is better for a model binder to add model errors instead of throwing exceptions:

ModelState.AddModelError("Phone", "Phone number is invalid.");

This way, later in your action you could check if the model is valid:

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