我开始将此选择从struts1转换为struts2。
Struts1
<html:select styleId="ss" property="type" styleClass="select2" onchange="checkStatus();">
<html:options collection="listOfType" property="value" labelProperty="key" />
</html:select>
Struts2
<s:select id="ss" name="type" cssClass="select2" onchange="checkStatus();">
...
</s:select>
,但我不知道如何转换选项标签。
您可以使用list
属性
<s:select id="ss" name="type" cssClass="select2" onchange="checkStatus();"
list="listOfType" listKey="value" listValue="key"/>
您可以在Struts Docs网站上阅读有关select tag
的更多信息。