Grails 客户端验证
您(如果您)如何使用 grails 管理客户端验证?您使用插件还是使用 javascript 框架反映您的约束? 干杯
How do you (if you) manage client side validation with grails ? Do you use a plugin or do you mirror your constraints using a javascript framework ?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我个人没有使用过它们,但这两个插件可能会帮助你:
http://grails.org/插件/javascript-validator
http://www.grails.org/plugin/remote - 约束
I haven't used them personally but these two plugins might help you out:
http://grails.org/plugin/javascript-validator
http://www.grails.org/plugin/remote-constraints
在我参与的 Grails 项目中,我们没有使用插件,而是使用 javascript 插件和自定义验证器(jQuery 插件、Prototype、Dojo 等)的混搭来实现客户端验证。它可以方便地在客户端上提供即时字段级验证。
正如 leebutts 所说,这些插件的来源是开放的。为什么不考虑增强这些插件中的一个(或两个)来实现您的需求并将其回馈社区?
可能值得查看新的约束插件。有了它,约束就成为了 Grails 的产物,并且可能会让这项工作变得更容易。
On Grails projects that I've been a part of, We haven't used a plugin but rather a mashup of javascript plugins and custom validators (jQuery plugins, Prototype, Dojo, etc.) to achieve the client side validation. Its handy to provide instant field-level validation on the client.
As leebutts said, The source of these plugins are open. Why not consider enhancing one(or both) of these plugins to achieve what you need and contribute that back to the community?
Might be worth checking out the new constraints plugin. With it Constraints become a Grails artefact, and might make this job easier.