如何跨两个模板应用过滤器

时间:2012-01-10 19:21:49

标签: xslt xpath

在另一个帖子中,另一位开发者通过提供下面的精彩答案帮助了我。

基本上,两个模板用于检索我需要在表格中显示的所有数据。

我现在的问题是如何应用过滤器来过滤这两个模板?我可以在xsl:value-of select="@Name[contains(.,NameIWant1)]"中成功使用xsl:template match="SubGroup",但我无法弄清楚如何将其应用于xsl:template match="Data"。我尝试使用各种名称方式无济于事。

先谢谢你们,对我们学习XSLT的帮助很大!公斤

示例XML

<?xml-stylesheet type="text/xsl" href="Sample.xsl"?>
<DataView Client="Client1" ID="1000" TimeStamp="12/7/2011 5:35:09 PM">
<Group ID="5000" Name="GroupName1">
<SubGroup ID="7000" Order="0" Name="NameIWant1">
<Data ID="1" Name="DataName1" Order="0">1</Data>
<Data ID="2" Name="DataName2" Order="0">2</Data>
<Data ID="3" Name="DataName3" Order="0">3</Data>
<Data ID="12" Name="DataName4" Order="0">4</Data>
</SubGroup>
<SubGroup ID="8000" Order="0" Name="NameIWant2">
<Data ID="1" Name="DataName1" Order="0">6</Data>
<Data ID="2" Name="DataName2" Order="0">7</Data>
<Data ID="3" Name="DataName3" Order="0">8</Data>
<Data ID="12" Name="DataName4" Order="0">9</Data>
</SubGroup>
</Group>
</DataView> 

Sample.xslt

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
    <xsl:strip-space elements="*"/>
    <xsl:template match="/">
        <html>
            <body>
                <h2>My Data</h2>
                <table border="1">
                    <tr bgcolor="#9acd32">
                        <th>Subgroup</th>
                        <th>DataName1</th>
                        <th>DataName2</th>
                        <th>DataName3</th>
                        <th>DataName4</th>
                    </tr>
                    <xsl:apply-templates/>
                </table>
            </body>
        </html>
    </xsl:template>
    <xsl:template match="SubGroup">
        <tr>
            <td><xsl:value-of select="@Name"/></td>
            <xsl:apply-templates/>
        </tr>
    </xsl:template>
    <xsl:template match="Data">
        <td><xsl:apply-templates/></td>
    </xsl:template>
</xsl:stylesheet>

我明白了......

____________________________
NameIWant1 | 1 | 2 | 3 | 4 |
           | 6 | 7 | 8 | 9 |

我想得到......

____________________________
NameIWant1 | 1 | 2 | 3 | 4 |

1 个答案:

答案 0 :(得分:0)

按名称过滤SubGroup的最简单方法是将表达式移动到匹配模式中,如下所示:

<xsl:template match="SubGroup[contains(@Name, 'NameIWant1')]">
    <tr>
        <td><xsl:value-of select="@Name"/></td>
        <xsl:apply-templates/>
    </tr>
</xsl:template>

然后使用空模板忽略所有其他SubGroup元素:

<xsl:template match="SubGroup"/>

完整样式表:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
    <xsl:strip-space elements="*"/>
    <xsl:template match="/">
        <html>
            <body>
                <h2>My Data</h2>
                <table border="1">
                    <tr bgcolor="#9acd32">
                        <th>Subgroup</th>
                        <th>DataName1</th>
                        <th>DataName2</th>
                        <th>DataName3</th>
                        <th>DataName4</th>
                    </tr>
                    <xsl:apply-templates/>
                </table>
            </body>
        </html>
    </xsl:template>
    <xsl:template match="SubGroup[contains(@Name, 'NameIWant1')]">
        <tr>
            <td><xsl:value-of select="@Name"/></td>
            <xsl:apply-templates/>
        </tr>
    </xsl:template>
    <xsl:template match="SubGroup"/>
    <xsl:template match="Data">
        <td><xsl:apply-templates/></td>
    </xsl:template>
</xsl:stylesheet>