通过xsl:choose将属性设置为所有子元素

时间:2010-05-03 11:04:23

标签: xml xslt

假设我有以下XML文件:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<MyCarShop>
    <Car gender="Boy">
        <Door>Lamborghini</Door>
        <Key>Skull</Key>
    </Car>
    <Car gender="Girl">
        <Door>Normal</Door>
        <Key>Princess</Key>
    </Car>
</MyCarShop>

我想执行转换,因此xml看起来像这样:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<MyCarShop>
    <Car gender="Boy">
        <Door color="blue">Lamborghini</Door>
        <Key color="blue">Skull</Key>
    </Car>
    <Car gender="Girl">
        <Door color="red">Normal</Door>
        <Key color="red">Princess</Key>
    </Car>
</MyCarShop>

所以我想根据性别信息为Car的每个子元素添加颜色。

我想出了这个XSLT,但它不起作用:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
  <xsl:output method="xml" indent="yes"/>

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

  <xsl:template match="/">
    <xsl:element name="MyCarShop">
      <xsl:attribute name="version">1.0</xsl:attribute>
      <xsl:apply-templates/>
    </xsl:element>
  </xsl:template>

    <xsl:template match="Car">
    <xsl:element name="Car">
      <xsl:apply-templates/>
    </xsl:element>
  </xsl:template>

    <xsl:template match="Door">
    <xsl:element name="Door">
          <xsl:attribute name="ViewSideIndicator">
        <xsl:choose>
            <xsl:when test="gender = 'Boy' ">Front</xsl:when>
            <xsl:when test="gender = 'Girl ">Front</xsl:when>
        </xsl:choose>
    </xsl:attribute>
       </xsl:element>
  </xsl:template>

      <xsl:template match="Key">
    <xsl:element name="Key">
      <xsl:apply-templates/>
          </xsl:element>
  </xsl:template>

  </xsl:stylesheet>

有人知道可能出现什么问题吗?

再次感谢!

1 个答案:

答案 0 :(得分:2)

我将测试中的值更改为../@gender,现在此模板根据Car的“gender”属性值将颜色属性添加到“Door”节点。 ..表示'获取父节点'。 @表示'获取属性的值'。

<xsl:template match="Door">
<xsl:element name="Door">
  <xsl:attribute name="color">
    <xsl:choose>
      <xsl:when test="../@gender = 'Boy' ">Red</xsl:when>
      <xsl:when test="../@gender = 'Girl' ">Green</xsl:when>
    </xsl:choose>
  </xsl:attribute>
</xsl:element>

您应该对“密钥”模板执行相同操作(或者通过将“提取”代码提取到单独的named template中来更好地重用“选择”代码)。

希望这有帮助。