ASP.NET MVC 3 和 jQuery 验证

发布于 2024-11-12 00:30:18 字数 285 浏览 0 评论 0原文

在 MVC 3 中进行验证的最佳方法是什么?以下是要求:

  1. 可以在客户端和服务器端工作。
  2. 在客户端和服务器之间共享尽可能多的代码(模型属性上的属性似乎是理想的)
  3. 跨异步请求工作
  4. 显示来自服务器端的错误、验证消息和成功消息
  5. 不显眼的 JavaScript,尽可能少
  6. 动态添加的 HTML 仍应验证同样,

我这个周末的任务是为此建立一个强大的解决方案,我想我会先在这里问,然后再用血汗和泪水重新发明或重新发现轮子。

What is the best way to do validation in MVC 3? Here are the requirements:

  1. Works client and server side.
  2. Shares as much code between client and server as possible (attribute on model property seems ideal)
  3. Works across async request
  4. Display errors, validation messages, and success messages coming from the server side
  5. Unobtrusive javascript, as minimal as possible
  6. Dynamically added HTML should still validate the same way

My task this weekend is to build a robust solution for this, figured I'd ask here first before re-inventing or re-discovering the wheel with blood sweat and tears.

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

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

发布评论

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

评论(1

千里故人稀 2024-11-19 00:30:18

我会查看 Brad Wilson 的博客。他介绍了在 MVC3 中使用不引人注目的验证,听起来正是您正在寻找的内容。

根据OP的评论添加更多信息

关于服务器端验证(自定义验证),请查看@jfar 对我发布的有关自定义验证的类似问题的回应 - 他建议,如果您严重依赖自定义验证,则应该质疑您的设计。就我而言,我最终要么使用 Ajax 来处理我的自定义验证,要么允许回发执行验证。

I would check out Brad Wilson's blog on this. He covers using unobtrusive validation in MVC3, sounds like exactly what you're looking for.

Adding more info per OP's comment

Regarding server side validation (custom validation), check out @jfar's response to a similar question I posted regarding custom validation -- he suggests that you should question your design if you're relying heavily on custom validation. In my case, I ended up going either with Ajax to handle my custom validation, or allowed the postback to perform the validation.

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