Grails:如何使 ag:textfield 只接受数字或只接受字母?

发布于 2024-09-24 17:12:16 字数 121 浏览 6 评论 0原文

我的代码中有不同的 g:textfields,我想让其中一些只接受数字或字母,但我不想验证它们,我希望它们是立即的,就像文本字段不接受一样当我尝试写一个数字时,什么都不会发生。

提前致谢!

FG

I have different g:textfields throughout my code, and I want to make some of the to only accept numbers or letters, but I don't want to validate for them, I want them to be immediate, like if the textfield does not accept numbers when I try to write one nothing should happen.

Thanks in advance!

FG

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

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

发布评论

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

评论(1

暖心男生 2024-10-01 17:12:16

我将使用 remote-constraints 插件 以及 匹配约束 以强制执行正则表达式。

当用户关闭字段并显示错误时,它将进行验证。它还将阻止无效数据保存在服务器端。

如果您想阻止他们实际上一起输入非字母数字字符,您需要编写一个自定义 onKeyPress 函数 用于您的输入字段。

干杯

I'd use the remote-constraints plugin along with a matches constraint to enforce a regex.

It will validate when the user tabs off the fields and display an error. It will also stop invalid data being saved on the server side.

If you want to stop them actually typing a non alpha numeric character all together, you'll need to write a custom onKeyPress function for your input fields.

cheers

Lee

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