我有一个简单的支持 bean:
@Named
@RequestScoped
public class BackingBean {
public String[] getStorageLocations() {
return new String[]{"0088", "0016", "0022"};
}
}
在 xhtml 文件中,我使用<ui:repeat />
标签从支持 bean 输出字符串数组:
<ui:repeat value="#{backingBean.storageLocations}" var="location">
<h:panelGroup layout="block">
<h:outputText value="#{location}" />
</h:panelGroup>
</ui:repeat>
我期待的是这样的:
<div>0088</div>
<div>0016</div>
<div>0022</div>
我从 JSF 收到的是:
<ui:repeat>0088</ui:repeat>
<ui:repeat>0016</ui:repeat>
<ui:repeat>0022</ui:repeat>
我究竟做错了什么?