如何根据 XML 深度通过 XSLT 更改标头级别

发布于 2024-11-06 13:38:05 字数 945 浏览 1 评论 0原文

我的 XSL 文件:

        ...
        <div>

          <xsl:choose>
            <xsl:when test="count(ancestor::node()) = 1">
              <h2>
            </xsl:when>
            <xsl:when test="count(ancestor::node()) = 2">
              <h3>
            </xsl:when>
          </xsl:choose> 

            <xsl:attribute name="id">
              <xsl:value-of select="@id" />
            </xsl:attribute>
            <xsl:copy-of select="title/node()"/>

          <xsl:choose>
            <xsl:when test="count(ancestor::node()) = 1">
              </h2>
            </xsl:when>
            <xsl:when test="count(ancestor::node()) = 2">
              </h3>
            </xsl:when>
          </xsl:choose> 

        </div>

我知道不允许像这样分割标签 h2.../h2、h3.../h3。

但如何正确地做到这一点呢?

My XSL-file:

        ...
        <div>

          <xsl:choose>
            <xsl:when test="count(ancestor::node()) = 1">
              <h2>
            </xsl:when>
            <xsl:when test="count(ancestor::node()) = 2">
              <h3>
            </xsl:when>
          </xsl:choose> 

            <xsl:attribute name="id">
              <xsl:value-of select="@id" />
            </xsl:attribute>
            <xsl:copy-of select="title/node()"/>

          <xsl:choose>
            <xsl:when test="count(ancestor::node()) = 1">
              </h2>
            </xsl:when>
            <xsl:when test="count(ancestor::node()) = 2">
              </h3>
            </xsl:when>
          </xsl:choose> 

        </div>

I know that it is not allowed to split tags h2.../h2, h3.../h3 like this.

But how to do this correctly?

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

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

发布评论

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

评论(2

惟欲睡 2024-11-13 13:38:05

您可以使用递归模板来完成此操作并动态生成标题元素。

例如,此输入 XML:

<input>
  <level id="1">
    <title>first</title>
    <level id="2">
      <title>second</title>
      <level id="3">
        <title>third</title>
      </level>
    </level>
  </level>
</input>

由此 XSLT 处理:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="xsl">
<xsl:output omit-xml-declaration="yes" indent="yes" method="html"/>
<xsl:strip-space elements="*"/>

<xsl:template match="level">
  <xsl:variable name="level" select="count(ancestor-or-self::level) + 1"/>

  <xsl:element name="h{$level}">
    <xsl:attribute name="id">
      <xsl:value-of select="@id"/>
    </xsl:attribute>
    <xsl:copy-of select="title/node()"/>
  </xsl:element>

  <xsl:apply-templates select="level"/>
</xsl:template>
</xsl:stylesheet>

给出以下 HTML:

<h2 id="1">first</h2>
<h3 id="2">second</h3>
<h4 id="3">third</h4>

You could do this with a recursive template and generate the heading element dynamically.

For example, this input XML:

<input>
  <level id="1">
    <title>first</title>
    <level id="2">
      <title>second</title>
      <level id="3">
        <title>third</title>
      </level>
    </level>
  </level>
</input>

processed by this XSLT:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="xsl">
<xsl:output omit-xml-declaration="yes" indent="yes" method="html"/>
<xsl:strip-space elements="*"/>

<xsl:template match="level">
  <xsl:variable name="level" select="count(ancestor-or-self::level) + 1"/>

  <xsl:element name="h{$level}">
    <xsl:attribute name="id">
      <xsl:value-of select="@id"/>
    </xsl:attribute>
    <xsl:copy-of select="title/node()"/>
  </xsl:element>

  <xsl:apply-templates select="level"/>
</xsl:template>
</xsl:stylesheet>

gives the following HTML:

<h2 id="1">first</h2>
<h3 id="2">second</h3>
<h4 id="3">third</h4>
独闯女儿国 2024-11-13 13:38:05

你可以使用

<xsl:template match="/div">
  <h1><xsl:apply-templates/></h1>
</xsl:template>

<xsl:template match="/*/div">
  <h2><xsl:apply-templates/></h2>
</xsl:template>

<xsl:template match="/*/*/div">
  <h3><xsl:apply-templates/></h3>
</xsl:template>

You could use

<xsl:template match="/div">
  <h1><xsl:apply-templates/></h1>
</xsl:template>

<xsl:template match="/*/div">
  <h2><xsl:apply-templates/></h2>
</xsl:template>

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