gpt4 book ai didi

spring-webflow - 如何在 FlowScope 中获取变量?

转载 作者:行者123 更新时间:2023-12-02 05:19:22 34 4
gpt4 key购买 nike

在我的 Spring web 流程中,我在 FlowScope 中有一个名为“action”的变量,我想在验证方法中检查这个变量;

\\\\\\
if(action=="copy"){
doCopy;
}else{
doOther;
}
\\\\\\\

但我不知道如何调用“action”变量。请帮助我。

最佳答案

你不能像这样访问它吗:

RequestContext rc = RequestContextHolder.getRequestContext();
String action = (String) rc.getFlowScope().get("action");

或者,如果您知道类型,则不进行类型转换:

String action = rc.getFlowScope().getString("action");

关于spring-webflow - 如何在 FlowScope 中获取变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14122006/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com