0

我正在使用下面的代码来显示一个分支列表。

<html:option value="">--Select Branch--</html:option>
<html:optionsCollection name="branchList" label="label" value="key"/>

如何在标签中同时显示分支标签和分支值。例如:现在它显示标签为“西雅图”,值为“SEA”。我希望值保持不变,但标签显示为“西雅图(SEA)”

另外,这是jsp的一部分。更新:应用程序使用 struts 框架。

4

1 回答 1

0

将以下方法添加到您的 bean:

public String getDisplayedLabel() {
    return label + "(" + key + ")";
}

并使用

<html:optionsCollection name="branchList" label="displayedLabel" value="key"/>
于 2013-01-22T15:41:09.033 回答