3
  <Products>    
    <Product ProductID="1">
      <productName>Ball</productName>
      <Color>Green</Color>
    </Product>
    <Product ProductID="2">
      <productName>Doll</productName>
      <Color>White</Color>
    </Product>      
  </Products>

上記のようなxml入力がありますが、製品名を属性として、製品IDをproductの下の要素として持つ製品要素の作成に問題があります.belowは私が持っているコードです。

 <?xml version="1.0" encoding="UTF-8"?>
 <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
 <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>


 <xsl:template match="//Products">
 <html>
  <body>
   <Products>
    <xsl:for-each select="//Product">
     <xsl:call-template name="Import"/>
    </xsl:for-each>
   </Products>
  </body>
 </html>
 </xsl:template>    

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

   </xsl:stylesheet>
4

2 に答える 2

0

次の方法でできると思います。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="//Products">
        <html>
            <body>
                <Products>
                    <xsl:apply-templates />
                </Products>
            </body>
        </html>
    </xsl:template>
    <xsl:template match="Product">
        <xsl:element name="product">
            <xsl:attribute name="name" select="ProductName/text()" />
            <xsl:element name="productID">
                <xsl:value-of select="@ProductID" />
            </xsl:element>
        </xsl:element>
    </xsl:template>
</xsl:stylesheet>

ところで、入力 XML に小さなエラーがあります (productName大文字がありません)。

于 2012-10-23T15:11:09.893 に答える
0

変化する

<xsl:template match="//Products">
 <html>
  <body>
   <Products>
    <xsl:for-each select="//Product">
     <xsl:call-template name="Import"/>
    </xsl:for-each>
   </Products>
  </body>
 </html>
 </xsl:template>

の中へ

<xsl:template match="Products">
 <html>
  <body>
   <Products>
    <xsl:apply-templates/>
   </Products>
  </body>
 </html>
 </xsl:template>

次にテンプレートを書きます

<xsl:template match="Product">
  <product name="{ProductName}">
    <xsl:apply-templates select="@ProductID"/>
  </product>
</xsl:template>

とテンプレート

<xsl:template match="Product/@ProductID">
  <productID>
    <xsl:value-of select="."/>
  </productID>
</xsl:template>
于 2012-10-23T15:11:18.130 に答える