标签: jsf el string-concatenation
我需要为<h:commandButton>创建一个回调,而作为参数,我需要传递一个与外部参数id串联的参数:
<h:commandButton>
我尝试嵌套这样的EL表达式:
<h:commandButton ... action="#{someController.doSomething('#{id}SomeTableId')}" />
然而,这种情况因EL异常而失败。这样做的正确语法/方法是什么?