0

私のxmlファイル名はproduct_file.xmlで、xsltファイルがあります.xmlとxsltファイルをコントロールにバインドしてWebページでxmlコントロールを使用していますが、出力が正しく得られません。ヘッダーのみを複数回表示する

<?xml version="1.0" encoding="utf-8" ?>
<productlist>
  <product>
    <itemnumber>1</itemnumber>
    <name>Staple Superior Men’s Jacket</name>
    <description>The Staple Superior T-bone PU Jacket is classic hood with a drawstring       fastening, long and a zip up front fastening.</description>
    <color>BLACK</color>
    <image>Staplesuperior1.gif</image>
    <price>$140</price>
    <size>69</size>
    <quantity>1</quantity>
    <category>Men</category>
  </product>
  <product>
    <itemnumber>2</itemnumber>
    <name>Afends Mens t-shirt</name>
    <description>The Afends Thrash For Cash Raglan Tee has a scooped hemline, a 100% cotton composition, and a regular fit.</description>
    <color>Beach Heather &amp; Black</color>
    <image>Afends1.gif</image>
    <price>$90</price>
    <size>80</size>
    <quantity>1</quantity>
    <category>Men</category>
  </product>
  <product>
    <itemnumber>3</itemnumber>
    <name>Wrangler Men Blue Vegas Skinny Fit Jeans</name>
    <description>Blue 5 pocket jeans, stretchable, has a zip fly with buttoned closure in front, 2 scoop pockets at sides</description>
    <image>Wrangler1.gif</image>
    <color>BLUE</color>
    <price>$125</price>
    <size>32</size>
    <quantity>1</quantity>
    <category>Men</category>
  </product>
  <product>
    <itemnumber>4</itemnumber>
    <name>Roadster Women Top</name>
    <description>Black top, knit, V neck, short extended sleeves, lattice like fabric manipulation detail at shoulders</description>
    <color>BLACK</color>
    <image>Roadster.gif</image>
    <price>$55</price>
    <size>Small</size>
    <quantity>1</quantity>
    <category>Women</category>
  </product>      

私のxsltファイルは

<xsl:template match="product">    
      <html>
        <head>
          <title>Products XSLT Demo</title>
        </head>
        <body>
          <h2>Products Information</h2>
          <br/>          
            <!--<xsl:copy>
              <xsl:apply-templates select="@* | node()"/>
            </xsl:copy>-->          
          <table bgcolor="#008BE7" border="1">
          <xsl:for-each select="itemnumber">            
            <tr>
              <td>Item Number</td>
              <td>
                <xsl:value-of select="itemnumber"/>
              </td>
            </tr>
            <tr> <td>name</td>
              <td>
                <xsl:value-of select="name"/>
              </td>
            </tr>
            <tr>
              <td>description</td>
              <td>
                <xsl:value-of select="description"/>
              </td>
            </tr>
            <tr>
              <td>color</td>
              <td>
                <xsl:value-of select="color"/>
              </td>
            </tr>
            <tr>
              <td>price</td>
              <td>
                <xsl:value-of select="price"/>
              </td>
            </tr>
            <tr>
              <td>size</td>
              <td>
                <xsl:value-of select="size"/>
              </td>
            </tr>
            <tr>  <td>quantity</td>
              <td>
                <xsl:value-of select="quantity"/>
              </td>
            </tr>
            <tr>
              <td>category</td>
              <td>
                <xsl:value-of select="category"/>
              </td>
            </tr>
            </xsl:for-each>
          </table>          
        </body>
      </html>
    </xsl:template>
</xsl:stylesheet>

エラーは foreach 式が機能していないため、見出しのみを複数回表示する出力

4

2 に答える 2

1

これは私のために働いているようです。templatematchtoproductlistforeachtoの変更product

<xsl:template match="productlist">    
      <html>
        <head>
          <title>Products XSLT Demo</title>
        </head>
        <body>
          <h2>Products Information</h2>
          <br/>          
            <!--<xsl:copy>
              <xsl:apply-templates select="@* | node()"/>
            </xsl:copy>-->          
          <table bgcolor="#008BE7" border="1">
          <xsl:for-each select="product">            
            <tr>
              <td>Item Number</td>
              <td>
                <xsl:value-of select="itemnumber"/>
              </td>
            </tr>
            <tr> <td>name</td>
              <td>
                <xsl:value-of select="name"/>
              </td>
            </tr>
            <tr>
              <td>description</td>
              <td>
                <xsl:value-of select="description"/>
              </td>
            </tr>
            <tr>
              <td>color</td>
              <td>
                <xsl:value-of select="color"/>
              </td>
            </tr>
            <tr>
              <td>price</td>
              <td>
                <xsl:value-of select="price"/>
              </td>
            </tr>
            <tr>
              <td>size</td>
              <td>
                <xsl:value-of select="size"/>
              </td>
            </tr>
            <tr>  <td>quantity</td>
              <td>
                <xsl:value-of select="quantity"/>
              </td>
            </tr>
            <tr>
              <td>category</td>
              <td>
                <xsl:value-of select="category"/>
              </td>
            </tr>
            </xsl:for-each>
          </table>          
        </body>
      </html>
    </xsl:template>
于 2013-10-10T07:24:22.210 に答える
0

foreach を次のように変更します。

<xsl:for-each select=".">  
于 2013-10-10T07:22:14.293 に答える