我正在使用 Icefaces 条件渲染组件,但它无法获取布尔值:
豆码:
public boolean isEmpty(){
return true;
}
public int getCount(){
if (isEmpty()){
return 0;
}
return 1;
}
IceFaces
<ice:panelGroup rendered="#{coverage.empty}"> //this doesnt work
<ice:panelGroup rendered="#{coverage.count==0}"> //this does work
错误消息:错误解析:#{coverage.empty}
为什么 IceFaces 无法识别布尔值?