Struts 2 escape html 行不通?
Struts 2 escape html doesn't work?
我有一个 Struts2 问题,
<s:property escape="false" value="value" />
值取自数据库,内容html标签,示例:
TOTO<br/>Adresse:<br/>
当使用带有转义 false 的 Struts2 标签时,结果:TOTO<br/>Adress:<br/>
而不是格式正确的内容,所以有人知道如何纠正这个问题吗?
我尝试 escapeHhtml
、escapeXML
、escape
,总是同样的问题...
我想要的结果是:
TOTO
Adress:
尝试操作中的代码
public String getValue(){
return StringEscapeUtils.unescapeHtml4(this.value);
}
然后与
一起使用
<s:property escapeHtml="false" value="value" />
我有一个 Struts2 问题,
<s:property escape="false" value="value" />
值取自数据库,内容html标签,示例:
TOTO<br/>Adresse:<br/>
当使用带有转义 false 的 Struts2 标签时,结果:TOTO<br/>Adress:<br/>
而不是格式正确的内容,所以有人知道如何纠正这个问题吗?
我尝试 escapeHhtml
、escapeXML
、escape
,总是同样的问题...
我想要的结果是:
TOTO
Adress:
尝试操作中的代码
public String getValue(){
return StringEscapeUtils.unescapeHtml4(this.value);
}
然后与
一起使用<s:property escapeHtml="false" value="value" />