我在 JSF 2.0 中有一个简单的问题,我需要建议什么是更好的解决方案。所以,在我的 .xhtml 页面上有一个组件,它有 2 个值:是和否。
<h:outputLabel id=v1 value="#{someValue}"/>
<f:selectItem itemValue="0" itemLabel="#{msg['label.no']}" />
<f:selectItem itemValue="1" itemLabel="#{msg['label.yes']}" />
我想要完成的是根据 outputLabel 获取 f:select 的默认值。例如:如果 outputLabel 获取值:业余而不是默认值 f:selectItem 为“是”,否则为“否”默认值。在支持 bean 中使用一些逻辑还是通过在 xhtml 页面上呈现更好?