检查菜单

时间:2015-08-19 08:59:23

标签: jsf menu jstl

我已经创建了一个托管bean,它从XML文件中读取菜单项,并在树中生成具有指定级别的菜单,现在我正在尝试检查当前项目,如果菜单中的此项目= “string”然后,将此Item作为链接并移动到另一个jsp表单,这里是来自xhtml文件的代码:

popItems是托管bean

<c:choose>
<c:when test="#{popItems.outputText == 'SDT'}">
<a href="test.jsp"><h:outputText value="#{node}"/> </a>
</c:when> 
<c:otherwise>
<h:outputText value="#{node}"/>
</c:otherwise>
</c:choose>

我认为条件中的问题以及项目与字符串之间的比较,任何人都可以帮忙吗?!

0 个答案:

没有答案