将多个具有相似匹配项的 XSLT 模板组合起来

Posted

技术标签:

【中文标题】将多个具有相似匹配项的 XSLT 模板组合起来【英文标题】:Combine multiple XSLT templates with similar matches 【发布时间】:2021-05-01 11:29:11 【问题描述】:

我在下面有这个 XSLT

<xsl:template match="word[@italic = 'y']">
        <p>
                <xsl:attribute name="i">yes</xsl:attribute>
                <xsl:apply-templates/>
        </p>
</xsl:template>

<xsl:template match="word[@bold = 'y']">
        <p>
                <xsl:attribute name="b">yes</xsl:attribute>
                <xsl:apply-templates/>
        </p>
</xsl:template>

<xsl:template match="word[@underline = 'y']">
        <p>
                <xsl:attribute name="u">yes</xsl:attribute>
                <xsl:apply-templates/>
        </p>
</xsl:template>

有没有办法将这些模板组合在一个嵌套块中,使用类似于“斜体 | 粗体 | 下划线”的变量,同时还反映 中的变化?谢谢。

【问题讨论】:

【参考方案1】:

组合匹配模式的常用方法是

<xsl:template match="word[@italic = 'y'] | word[@bold = 'y'] | word[@underline = 'y']">

至于转换属性,你就不能用吗

<xsl:template match="word">
  <p>
    <xsl:apply-templates select="@* | node()"/>
  </p>
</xsl:template>

为属性加上模板,例如

<xsl:template match="word/@italic[. = 'y']">
  <xsl:attribute name="i">yes</xsl:attribute>
</xsl:template>

等等?

或许

<xsl:template match="word/@italic[. = 'y'] | word/@bold[. = 'y'] | word/@underline[. = 'y']">
  <xsl:attribute name="substring(local-name(), 1, 1)">yes</xsl:attribute>
</xsl:template>

【讨论】:

以上是关于将多个具有相似匹配项的 XSLT 模板组合起来的主要内容,如果未能解决你的问题,请参考以下文章

具有多个匹配项的 JMESPath JSON 过滤器

应用所有模板

如何组合多个xml并为组合的XML准备XSLT 以上是一个XML的XSLT

在使用 Selenium webdriver 时,为啥我们使用链表来收集具有多个匹配项的链接或下拉内容?

使用 xslt 模板将多个图像添加到 docx 文件

MYSQL - 将具有多个重复值的行组合起来,然后删除重复项