0

此样式表首先显示所有 Product_Name 数据,然后显示所有 Product_Image_File。如何格式化它,使其首先显示 Product_Name 后跟 | 和 Product_Image_File 后跟 br

我需要它吐出的例子:

Product_Name|Product_Image_File</br>

当前 XSL:

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


<xsl:template match="/">
    <xsl:value-of select="products/product/Product_Name" />
    <xsl:value-of select="products/product/Product_Images[1]/item[1]/Product_Image_File[1]" />
</xsl:template>

上面的新 XSL 工作但在打印出第一个产品后停止。

4

1 回答 1

0

尝试|xsl:apply-templates...

XML 输入(根据 xslt 和上一个问题中的路径猜测)

<products>
    <product>
        <Product_Name>Product A</Product_Name>
        <Product_Images>
            <item>
                <Product_Image_File>hello/this_d_one1.jpg</Product_Image_File>
            </item>
            <item>
                <Product_Image_File>hello/testNOTHISONE.jpg</Product_Image_File>
            </item>
        </Product_Images>
    </product>
    <product>
        <Product_Name>Product B</Product_Name>
        <Product_Images>
            <item>
                <Product_Image_File>hello/this_d_one33.jpg</Product_Image_File>
            </item>
            <item>
                <Product_Image_File>hello/testNOTHISONE3.jpg</Product_Image_File>
            </item>
        </Product_Images>
    </product>
</products>

XSLT 1.0

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

    <xsl:template match="/*">
        <xsl:apply-templates select="product/Product_Name|product/Product_Images[1]/item[1]/Product_Image_File[1]"/>
    </xsl:template>

    <xsl:template match="Product_Name">
        <xsl:value-of select="."/>
        <xsl:text>|</xsl:text>
    </xsl:template>

    <xsl:template match="Product_Image_File">
        <xsl:value-of select="."/>
        <br/>
    </xsl:template>

</xsl:stylesheet>

输出(原始)

Product A|hello/this_d_one1.jpg<br>Product B|hello/this_d_one33.jpg<br>

输出(渲染)

产品 A|hello/this_d_one1.jpg
产品 B|hello/this_d_one33.jpg

于 2013-05-23T06:51:13.853 回答