有没有更好的方法来执行以下XSLT

时间:2014-07-24 12:23:40

标签: xml xslt xpath

我正在学习XSLT并做一些简单的例子来更好地了解它。我想通过XSLT将XML文件转换为html。这是我的XML:

<structure>
    <part class="H1" id="h11"/>
    <part class="H2" id="h21"/>
    <part class="H3" id="h31"/>
    <part class="H4" id="h41"/>
    <part class="H5" id="h51"/>
    <part class="H6" id="h61"/>
</structure>
<style>
    <property part-name="h11" name="text">This is a h1 heading</property>
    <property part-name="h21" name="text">This is a h2 heading</property>
    <property part-name="h31" name="text">This is a h3 heading</property>
    <property part-name="h41" name="text">This is a h4 heading</property>
    <property part-name="h51" name="text">This is a h5 heading</property>
    <property part-name="h61" name="text">This is a h6 heading</property>
</style>

这是我简单的XLST:

<xsl:key name="headings" match="property[@name='text']" use="@part-name"/>
<xsl:template match="part[@class='H1']">
    <h1>
        <xsl:value-of select="key('headings', @id)"/>
    </h1>
</xsl:template>
<xsl:key name="headings" match="property[@name='text']" use="@part-name"/>
<xsl:template match="part[@class='H2']">
    <h2>
        <xsl:value-of select="key('headings', @id)"/>
    </h2>
</xsl:template>
<xsl:template match="part[@class='H3']">
    <h3>
        <xsl:value-of select="key('headings', @id)"/>
    </h3>
</xsl:template>
<xsl:template match="part[@class='H4']">
    <h4>
        <xsl:value-of select="key('headings', @id)"/>
    </h4>
</xsl:template>
<xsl:template match="part[@class='H5']">
    <h5>
        <xsl:value-of select="key('headings', @id)"/>
    </h5>
</xsl:template>
<xsl:template match="part[@class='H6']">
    <h6>
        <xsl:value-of select="key('headings', @id)"/>
    </h6>
</xsl:template>

正如您所看到的,它非常冗长和重复。有没有办法通过一些XPath表达式来缩短它,并以更好的方式实际完成工作?也许,像regEx这样的东西? 我能想到的另一种方法是使用<xsl:if>并将整个内容放在一个模板中,但这并不是IMO的改进。

1 个答案:

答案 0 :(得分:2)

我想你想要

<xsl:template match="part[starts-with(@class, 'H')]">
    <xsl:element name="h{translate(@class, 'H', '')}">
        <xsl:value-of select="key('headings', @id)"/>
    </xsl:element>
</xsl:template>