Tapestry,判断tml中表单是否有错误
我在表单中有一个文本,如果表单有错误,我想隐藏该文本并将其替换为错误消息。 我如何在tml中确定当前表单有错误?
发射机
I have a text in a form that I want to hide if the form has errors and replace it with the error message.
How do i determine in the tml that the current form has an error?
Tx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 @Component 注释将表单注入 java 中,并使用 getHasError 方法。然后您可以将此结果与“if”组件一起使用。
马努
You can inject your form in your java with the @Component annotation, and use the getHasError method. Then you can use this result with the "if" component.
Manu