1

假设我的 xml 文件的结构是:

 <?xml version="1.0" encoding="ISO-8859-1"?>
<main>
    <_All>
        <_999999>
            <Employee_Amount>10.0</Employee_Amount>
            <Cash_Count>10.0</Cash_Count>
            <Dine_in_Amount>10.0</Dine_in_Amount>
            <Promos_Actual>10.0</Promos_Actual>
            <Combo_Savings_Amount>10.0</Combo_Savings_Amount>
            <total_sales>10.0</total_sales>
            </_999999>
        <_test>
            <Employee_Amount>20.0</Employee_Amount>
            <Cash_Count>20.0</Cash_Count>
            <Dine_in_Amount>20.0</Dine_in_Amount>
            <Promos_Actual>20.0</Promos_Actual>
            <Combo_Savings_Amount>20.0</Combo_Savings_Amount>
            <total_sales>20.0</total_sales>
            </_test>
    </_All>
</main>

我必须对所有节点求和(例如 - 两个节点的 Cash_Count,两个节点的 total_sales),节点名称可以更改,因此我无法使用其名称进行导航。我试过 for-each 但我坚持使用 xpath 表达式。因为我是 xslt 1.0 的新手,请帮助我。

在proskor在答案中建议我的帮助下,我尝试了以下xslt:

<?xml version="1.0" encoding="US-ASCII"?>
<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">
  <xsl:output method="html" indent="yes"/>
  <xsl:template match="/*">
    <table border="1" cellspacing="1" cellpadding="1">
        <tr>
            <xsl:apply-templates select="/*/*/*" mode="wrap"/>
        </tr>
        <tr>
        <td><xsl:value-of select="name(child::*)"/></td>
        <td>&#160;</td>
        <xsl:for-each select="/*/*/*/*[current()]">
                          <xsl:variable name="pos" select="position()" />
                         <td> <xsl:value-of select="sum(/*/*/*/*[$pos])" /></td>
                  </xsl:for-each>
        </tr>
        <xsl:apply-templates select="/*/*/*" mode="values"/>
    </table>
  </xsl:template>

 <xsl:template match="/*/*/*" mode="wrap">
    <xsl:if test="position() = 1">
    <th>Region</th>
    <th>Store</th>
    <xsl:for-each select="./*">
    <th><xsl:value-of select="name()"/></th>
    </xsl:for-each>
    </xsl:if>
</xsl:template>
<xsl:template match="/*/*/*" mode="values">
    <xsl:for-each select=".">
        <tr>
            <td>&#160;</td>
            <td><xsl:value-of select="name()"/></td>
            <xsl:for-each select="./*">
            <td><xsl:value-of select="."/></td>
            </xsl:for-each>
        </tr>
    </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

它工作得很好,但产生了额外的td输出,其值为 0。因为有 6 个节点,因此有 6 个额外的td,其值为 0。总和之后,这个tr看起来像这样..

<tr>
<td>30</td>
<td>30</td>
<td>30</td>
<td>30</td>
<td>30</td>
<td>30</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>

请任何人帮助弄清楚。谢谢

4

1 回答 1

0

将第 14 行的 xsl:for-each 元素的 select-attribute 更改为"/*[1]/*[1]/*[1]/*"

<?xml version="1.0" encoding="US-ASCII"?>
<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">
  <xsl:output method="html" indent="yes"/>
  <xsl:template match="/*">
    <table border="1" cellspacing="1" cellpadding="1">
        <tr>
            <xsl:apply-templates select="/*/*/*" mode="wrap"/>
        </tr>
        <tr>
        <td><xsl:value-of select="name(child::*)"/></td>
        <td>&#160;</td>
        <xsl:for-each select="/*[1]/*[1]/*[1]/*">
                          <xsl:variable name="pos" select="position()" />
                         <td> <xsl:value-of select="sum(/*/*/*/*[$pos])" /></td>
                  </xsl:for-each>
        </tr>
        <xsl:apply-templates select="/*/*/*" mode="values"/>
    </table>
  </xsl:template>

 <xsl:template match="/*/*/*" mode="wrap">
    <xsl:if test="position() = 1">
    <th>Region</th>
    <th>Store</th>
    <xsl:for-each select="./*">
    <th><xsl:value-of select="name()"/></th>
    </xsl:for-each>
    </xsl:if>
</xsl:template>
<xsl:template match="/*/*/*" mode="values">
    <xsl:for-each select=".">
        <tr>
            <td>&#160;</td>
            <td><xsl:value-of select="name()"/></td>
            <xsl:for-each select="./*">
            <td><xsl:value-of select="."/></td>
            </xsl:for-each>
        </tr>
    </xsl:for-each>
</xsl:template>

</xsl:stylesheet>
于 2013-01-16T23:33:19.360 回答