如何使用XSL / XSLT删除属性或替换属性值?

时间:2015-06-03 16:19:30

标签: xml xslt xslt-1.0

我的XML文件中有以下内容:

  <Hits>
    <Hit status="good">     
      <batter ref="4">Sample Text 1</batter>
      <contexts ref="5">Sample Text 2</contexts>
    </Hit>
    <Hit status="bad">
      <batter ref="7">Sample Text 3</batter>
      <contexts ref="" />
    </Hit>
  </Hits>

我正在尝试生成一个XSL,它会删除任何元素中的ref属性,或者只使用ref这样的硬编码替换"XXX"属性的值。我希望找到并删除ref属性作为我的第一个选项。

以下是我正在使用的XSL,但它并没有真正删除有问题的属性:

<xsl:template match="Hit">
   <xsl:copy-of select="." />
   <xsl:text>
</xsl:text>
</xsl:template>



<xsl:template match="/Hit/batter/@ref">
        <xsl:attribute name="ref">
            <xsl:value-of select="$mycolor"/>
        </xsl:attribute>
</xsl:template>

1 个答案:

答案 0 :(得分:1)

  

我正在尝试生成一个xsl,它将...替换属性ref   硬编码的价值

您的方法的主要问题是您的第二个模板永远不会应用,因为您的第一个模板不会应用任何模板。

以这种方式尝试:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<!-- identity transform -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="@ref">
    <xsl:attribute name="ref">place a hard-coded value here</xsl:attribute>
</xsl:template>

</xsl:stylesheet>