gpt4 book ai didi

java - JSF 中的隐藏变量

转载 作者:搜寻专家 更新时间:2023-11-01 03:29:13 26 4
gpt4 key购买 nike

我需要获取在我的 Facelets 文件中定义的隐藏变量的值来处理我的 bean 中的事务。我在流程操作方法中使用以下行来获取隐藏的输入组件。但我得到的是 null。如何获取指定的隐藏输入值?

bean :

UIInput classNameComponent = (UIInput) event.getComponent().findComponent("className");

View :

<ui:composition template="/templates/content.xhtml">
...
<h:form id="classForm">
...
<o:dataTable id="classTable">
...
<f:facet name="import">
<h:inputHidden id="className" value="com.LoadClass" />
</f:facet>
...
</o:dataTable>
...
</h:form>
...
</ui:composition>

最佳答案

我找到答案了!!!我已经通过下面提到的方法得到了它..

className = (String) FacesContext.getCurrentInstance().getExternalContext()
.getRequestParameterMap().get("classForm:className");

关于java - JSF 中的隐藏变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5012936/

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