Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是检票口框架的新手。目前我的任务是逐个验证表单字段(序列)。但默认情况下,Wicket 在表单中的一个位置一起显示错误消息。我希望按顺序验证该字段是否有任何组件?或者请指导我正确的方向我应该做什么?
对于 EX:
如果我考虑LoginPage其中包含用户名,密码,如果我提交表单,则不输入任何内容。这应该显示第一个字段,username required即使密码也没有输入。一旦我接下来填写用户名,它应该检查输入的密码是否像这样的顺序验证可能?
LoginPage
username required
您可以使用 aComponentFeedbackMessageFilter分别显示每个组件的反馈消息。
ComponentFeedbackMessageFilter
请阅读“显示反馈消息并过滤它们”: