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.
这是我正在尝试做的事情:
<ui:repeat value="#{foo}" var="keyprefix"> <p:inputText value="#{someBean.someMap[keyprefix + 'somesuffix']}" /> </ui:repeat>
我试过使用fn:joinwhich 不起作用。我尝试使用.concat()但我不在 2.2 上,我仍在使用 2.1。有没有一种简单的方法可以做到这一点我错过了?
fn:join
.concat()
您可以使用<c:set>通常的方式通过在字符串文字中内联 EL 表达式来准备动态映射键。
<c:set>
<c:set var="key" value="#{keyprefix}somesuffix" /> <p:inputText value="#{someBean.someMap[key]}" />