我有一个 JSF 页面,我根据托管 bean 属性控制渲染器属性。
<p:commandLink action="#{smartphoneBean.drillDown(smartphone.ldapuser,smartphone.productGrp)}"
rendered="#{!(smartphone.ldapuser.charAt(0) ge '0' and smartphone.ldapuser.charAt(0) le '9')}" value="#{smartphone.ldapuser}">
一旦我运行我的代码。这个值以任意数字开头的 commandLink 仍然会被渲染。
我希望比较 char 值的整数表示。
你对这个问题有什么想法吗?