我可以在自定义模型绑定器中使用 MVC 验证属性吗?

发布于 2024-09-05 13:22:44 字数 111 浏览 5 评论 0原文

我的模型上有很多 MVC 验证属性。当 defaultModelBinder 在提交时绑定我的模型时,一切都很好。但是,我需要创建一个自定义模型绑定器。我想继续使用我的验证属性。我可以吗?如果是这样,怎么办?

I have lots of MVC validation attributes on my model. Everything works great when the defaultModelBinder binds my model on submit. But, I need to create a custom modelbinder. I'd like to continue using my validation attributes. Can I? If so, how?

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

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

发布评论

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

评论(1

苏辞 2024-09-12 13:22:45

我不确定这是否可能,但我可以说的一件事是,如果可能的话,那么默认模型绑定器的扩展点不会使其非常容易被发现。有一天我花了几个小时试图让它发挥作用,但没有成功。

您可以使用控制器的 TryValidateModel() 方法来代替让它工作。

I'm not sure whether this is possible or not, but one thing I can say is that if it is possible then the extension points for default model binder don't make it very discoverable. I spent several hours one day trying to get this to work to no avail.

In lieu of getting this to work, you can use the Controller's TryValidateModel() methods.

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