0

我正在使用struts2。我想出了这个问题。

我有这个代码

<html:optionsCollection name="items" label="${itemsLabel}" value="${itemsId}"/>

这里的变量 items(bean 的集合), itemsLabel(bean 的属性)。

如何在这段代码中使用 escapeXML?

我计划通过遍历项目将此 optionsCollection 更改为选项数组。但我不知道如何使用两个 EL 表达式并检索 bean 对象的属性。

任何帮助将不胜感激。谢谢,

4

1 回答 1

0

正如 Jaiwo99 所说,它看起来不像 struts 2 标签。但是对于 s:property 标签,有一个布尔类型的 escapeXml 选项。

请通过以下链接了解更多信息。

http://struts.apache.org/2.2.1/docs/property.html

于 2012-11-09T16:21:27.270 回答