在 Spring Webflow 中验证之前评估方法

发布于 2024-10-01 05:22:03 字数 115 浏览 6 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

囍笑 2024-10-08 05:22:03

您可以使用的一个技巧是将必要的逻辑添加到验证方法的开头,如下所示(参考指南中的示例):

<view-state id="enterBookingDetails" model="booking">
    <transition on="proceed" to="reviewBooking">
</view-state>

public class Booking {
    private Date checkinDate;
    private Date checkoutDate;
    ...

    public void validateEnterBookingDetails(ValidationContext context) {
        // do whatever you want to do before attemting validation
        ...

        // now do validation
        ...
    }
}

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):

<view-state id="enterBookingDetails" model="booking">
    <transition on="proceed" to="reviewBooking">
</view-state>

public class Booking {
    private Date checkinDate;
    private Date checkoutDate;
    ...

    public void validateEnterBookingDetails(ValidationContext context) {
        // do whatever you want to do before attemting validation
        ...

        // now do validation
        ...
    }
}
情归归情 2024-10-08 05:22:03

klr8 的答案的问题是,除了传递给验证器的validationContext 之外,您没有任何信息。如果您需要流程中的其他信息,您可以尝试手动触发验证:

<transition on="submit" to="isValid" validate="false">
    <evaluate expression="someLogicIWantToDo(a,b,c)" />
    <evaluate expression="booking.validate(bookingForm, messageContext)"/>
</transition>

<decision-state id="isValid">
    <if test="messageContext.hasErrorMessages()" then="home" else="page2"/>
</decision-state>

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:

<transition on="submit" to="isValid" validate="false">
    <evaluate expression="someLogicIWantToDo(a,b,c)" />
    <evaluate expression="booking.validate(bookingForm, messageContext)"/>
</transition>

<decision-state id="isValid">
    <if test="messageContext.hasErrorMessages()" then="home" else="page2"/>
</decision-state>

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.

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