我正在应用JSP 中fn:escapeXml
的输入值(例如>
)来进行 html 转义。当我提交表单时,我确实需要将参数发送到控制器。在我的控制器中,请求参数是 as>
而不是>
。因此,我无法在控制器中取消转义以获得原始值。有人可以帮忙吗?
问问题
2844 次
2 回答
1
Apache Commons Lang - 字符串转义实用程序
http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/StringEscapeUtils.html
使用其中一种转义方法。
于 2012-10-30T14:17:16.900 回答
0
One solution is, create a custom method, and replace all string occurrences of > with > and do similar operation for other html characters.
于 2012-10-30T11:21:03.890 回答