0

我需要在不输入 JSF 页面的情况下设置属性值,如下所示:

<ui:repeat var="i" value="#{elBean.list}" iterationStatus="loop" >
    #{i}    // I need to assign this value to a bean property
</ui:repeat>
4

1 回答 1

1

你可以加c:set

<c:set property="i" value="SOME_VALUE"/>

另见

于 2012-05-30T04:38:32.733 回答