JSF 2.0 验证摘要消息

发布于 2024-10-21 05:00:04 字数 161 浏览 0 评论 0原文

使用 JSF 2.0 验证,是否有办法在出现错误时在提交时显示摘要消息(以及保留单个表单元素错误消息)?

我有一个很大的表单,所以我遇到的问题是,当用户单击“提交”时,它将在每个单独的表单元素旁边显示错误信息,但用户无法轻松判断页面上存在错误。

那么,常见或推荐的做法是什么?

Using JSF 2.0 validation, is there a way to have a summary message on submit if there is an error (as well as keeping individual form element error messages)?

I have a large form so the problem I am encountering is that when the user clicks "SUBMIT" it will display the error information next to each individual form element but the user cannot easily tell that errors exist on the page.

Along the lines, what is the common or recommended practice?

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

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

发布评论

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

评论(2

为你拒绝所有暧昧 2024-10-28 05:00:04

这个怎么样?

<h:outputText value="There are messages" rendered="#{not empty facesContext.messageList}" />

或者,您也可以仅使用 JavaScript 将焦点放在第一个无效的输入元素上。这是更常见的做法。

How about this?

<h:outputText value="There are messages" rendered="#{not empty facesContext.messageList}" />

Alternatively you can also just use JavaScript to put focus on the first invalid input element. That's a more common practice.

濫情▎り 2024-10-28 05:00:04

我通常

<h:messages>

在页面顶部与组件的 label 属性一起使用来描述错误消息中的每个组件。

链接此处
此处可能有用

I generally use

<h:messages>

at the top of the page along with label attribute of components to describe each component in error message.

link here
and here might be useful

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