使用 XSLT 取消转义 HTML 实体

发布于 2024-12-13 08:31:09 字数 272 浏览 0 评论 0原文

我的 XSL 模板中有外部脚本结果,包含转义的 html 特殊字符。如何使用 XSLT 取消转义并将其输出到最终文档?

我已经转义了结果, disable-output-escaping="yes" 无法帮助我。

例如(外部脚本的结果):

<!--376473658726587-->
<a href="/">some text</a>

I have external script result in my XSL template, contains escaped html special characters. How I can unescape it with XSLT and output it to final document?

I have already escaped result, disable-output-escaping="yes" can't help me.

For example (result from external script):

<!--376473658726587-->
<a href="/">some text</a>

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

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

发布评论

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

评论(1

空城旧梦 2024-12-20 08:31:09

此转换

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="text"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="script">
  <script>
    <xsl:value-of select="normalize-space()"/>
  </script>
 </xsl:template>
</xsl:stylesheet>

应用于此 XML 文档时(您未能提供!!!):

<script>
<!--376473658726587-->
<a href="/">some text</a>
</script>

产生所需的正确结果

  <script>
    <!--376473658726587--> <a href="/">some text</a>
  </script>

This transformation:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="text"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="script">
  <script>
    <xsl:value-of select="normalize-space()"/>
  </script>
 </xsl:template>
</xsl:stylesheet>

when applied on this XML document (you failed to provide one !!!):

<script>
<!--376473658726587-->
<a href="/">some text</a>
</script>

produces the wanted, correct result:

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