在 Spring Webflow 中验证之前评估方法
Webflow 允许您通过流中的
元素执行特定表达式。
但是,是否有可能在 webflow 尝试验证页面之前以某种方式评估表达式?
Webflow allows you to execute particular expressions via the <on-entry>
element in a flow.
However is it possible to somehow evaluate an expression BEFORE webflow attempts to validate the page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用的一个技巧是将必要的逻辑添加到验证方法的开头,如下所示(参考指南中的示例):
One trick you could use is to add the necessary logic to the beginning of your validation method, something like this (sample from the reference guide):
klr8 的答案的问题是,除了传递给验证器的validationContext 之外,您没有任何信息。如果您需要流程中的其他信息,您可以尝试手动触发验证:
Web 流程验证方法可以采用 MessageContext 或 ValidationContext。如果您的验证方法采用validationContext,我不确定如何从Web Flow 访问validationContext 来手动触发。
The problem with klr8's answer is that you do not have any information besides the validationContext passed into the validator. If you need other information from your flow, you could try to trigger the validation manually:
Web-flow validate methods can take either a MessageContext or ValidationContext. I am not sure how to access validationContext from Web Flow to manually trigger if you validation methods take validationContext.