JSF 请不要转义我的 html

发布于 2024-12-05 07:35:30 字数 230 浏览 1 评论 0原文

从 dbms 我得到像 这样的东西abc。当它到达我的 xhtml 文件中的 ${someManagedBean.someValue} 时,输出将被清理。这对于 99,999% 的情况来说都很棒。

问题:有什么方法可以禁用这种自动转义吗?

额外问题:我可以只允许 html 而不允许 javascript 吗?

From the dbms I get stuff like <font color="red"> abc</font>. When it reaches the ${someManagedBean.someValue} in my xhtml file the output is sanitized. That is great for 99,999% of all cases.

Question: Is there some way to disable this auto escaping?

Bonus Question: Can I only allow html and disallow javascript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

左秋 2024-12-12 07:35:30
<h:outputText value="#{someManagedBean.someValue}" escape="false" /> 
<h:outputText value="#{someManagedBean.someValue}" escape="false" /> 
甜尕妞 2024-12-12 07:35:30

https://docs。 oracle.com/javaee/7/javaserver-faces-2-2/vdldocs-facelets/h/outputText.html

escape=false

不确定是否仅阻止 JS。您可能必须自己解析 HTML 以删除


编辑 - 删除链接 (http: //www.jsftoolbox.com/documentation/help/12-TagReference/html/h_outputText.html),因为它已经过时了。替换为 Oracle 链接。

https://docs.oracle.com/javaee/7/javaserver-faces-2-2/vdldocs-facelets/h/outputText.html

escape=false

Not sure about preventing JS only though. You might have to parse the HTML yourself to get rid of <script> and contents.


EDIT - Removed link (http://www.jsftoolbox.com/documentation/help/12-TagReference/html/h_outputText.html) because it was stale. Replaced with Oracle link.

过潦 2024-12-12 07:35:30

outputFormat 标签可以帮助你。
请检查 http://www.mkyong.com/jsf2/jsf-2-输出格式示例/

outputFormat tag can help you.
Please check http://www.mkyong.com/jsf2/jsf-2-outputformat-example/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文