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.
我有一个对象数组,我想在 outputText 中显示对象属性的输出。该属性由变量给出。我该怎么办?
<h:outputText id="cole14" value="#{Bean.ocupacion[0].} #{Bean.columna}"/>
如果我理解正确,您想在运行时使用字符串来确定要显示的属性。试试#{Bean.ocupacion[0][Bean.columna]}。
#{Bean.ocupacion[0][Bean.columna]}
你试过了吗 :
<h:outputText id="cole14" value="#{Bean.ocupacion[0].columna}"/>