FluentValidation 客户端验证
我尝试使用 GreaterThen 验证器,但它看起来不支持客户端验证。是否有支持客户端验证的 FluentValidation 验证器列表?
I tried to use GreaterThen validator and it looks like it doesn't support client-side validation. Is there a list of FluentValidation validators which support client-side validation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
客户端支持的验证器列表位于此页面,如下所示如下:
The list of validators supported on the client is on this page and are as follows:
到目前为止,我知道没有列表,您可以创建自己的客户端验证器,以便创建该创建者,然后也可以在客户端工作
So far i know there is no list, you could create your own client side validator so create that createrthen works also on client side
您可以使用表单助手。它为 Fluent-Validation 添加了客户端支持。
Startup.cs
视图:
控制器:
You can use Form Helper. It adds client-side support to Fluent-Validation.
Startup.cs
View:
Controller: