下面是我的 sample.jsp 我的要求是显示树结构格式。
<%@ taglib prefix="s" uri="/struts-tags" %>
<%
String s="ROOT";
%>
<s:tree theme="ajax" id="root" label="%{s}">
<s:treenode theme="ajax" id="child1" label="<b>Child 1</b>" />
<s:treenode theme="ajax" id="subchild1" label="SubChild 1">
<s:treenode theme="ajax" id="subchild2" label="SubChild 2" />
<s:treenode theme="ajax" id="subchild3" label="SubChild 3" />
</s:treenode>
<s:treenode theme="ajax" id="child2" label="<b>child 2</b>" />
</s:tree>
但它没有显示 s 值
<s:tree theme="ajax" id="root" label="%{s}">
请建议我怎么做?谢谢