对于XSLT中的每个循环

时间:2016-03-29 11:53:55

标签: xml xslt

我想使用XSLT进行一次转换。根据以下示例,有多个EmpRecord可用,每个EmpRecord包含该部门下可用员工的EmpDept和Profile。

XML:

<Employee>
    <EmpRecord>
        <EmpDept>Accounting</EmpDept>
        <EmpData>
            <Name>Joy</Name>
            <Age>32</Age>
        </EmpData>
    </EmpRecord>
    <EmpRecord>
        <EmpDept>Finance</EmpDept>
    </EmpRecord>
    <EmpRecord>
        <EmpDept>IT</EmpDept>
        <EmpData>
            <Name>Sam</Name>
            <Age>27</Age>
        </EmpData>
        <EmpData>
            <Name>John</Name>
            <Age>25</Age>
        </EmpData>
        <EmpData>
            <Name>Ricky</Name>
            <Age>31</Age>
        </EmpData>
    </EmpRecord>
</Employee>

预期输出:

<Employee>
    <EmpRecord>
        <Department>Accounting</Department>
        <EmpData>
            <EmpName>Joy</EmpName>
            <Age>32</Age>
        </EmpData>
    </EmpRecord>
    <EmpRecord>
        <Department>IT</Department>
        <EmpData>
            <EmpName>Sam</EmpName>
            <Age>27</Age>
        </EmpData>
        <EmpData>
            <EmpName>John</EmpName>
            <Age>25</Age>
        </EmpData>
        <EmpData>
            <EmpName>Ricky</EmpName>
            <Age>31</Age>
        </EmpData>
    </EmpRecord>
</Employee>

我能够获得所有可用的EmpData但无法获取EmpDept。

使用XSLT:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<Employee>
<xsl:for-each select="/Employee/EmpRecord/EmpData">
<Department><xsl:value-of select="./EmpDept"/></Department>
<EmpData>
<EmpName><xsl:value-of select="./Name"/></EmpName>
<Age><xsl:value-of select="./Age"/></Age>
</EmpData>
</xsl:for-each>
</Employee>

</xsl:template>
</xsl:stylesheet>

所以我只想要那些至少有一名员工可用的EmpDept。

2 个答案:

答案 0 :(得分:2)

以这种方式尝试:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:template match="/Employee">
    <Employee>
        <xsl:for-each select="EmpRecord[EmpData]">
            <EmpRecord>
                <Department>
                    <xsl:value-of select="EmpDept"/>
                </Department>
                <xsl:for-each select="EmpData">
                    <EmpData>
                        <EmpName>
                            <xsl:value-of select="Name"/>
                        </EmpName>
                        <xsl:copy-of select="Age"/>
                    </EmpData>
                </xsl:for-each>
            </EmpRecord>
        </xsl:for-each>
    </Employee>
</xsl:template>

</xsl:stylesheet>

或者,如果您愿意:

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

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

<xsl:template match="EmpRecord[not(EmpData)]"/>

<xsl:template match="EmpDept">
    <Department>
        <xsl:apply-templates/>
    </Department>
</xsl:template>

<xsl:template match="Name">
    <EmpName>
        <xsl:apply-templates/>
    </EmpName>
</xsl:template>

</xsl:stylesheet>

答案 1 :(得分:0)

您实际想要做的是:除了EmpRecord不包含任何EmpData之外,将所有内容从源复制到目标xml。对?试试这个:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output encoding="UTF-8" method="xml" version="1.0" indent="yes"/>
    <!-- identity template -->
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <!-- specific part -->
    <xsl:template match="EmpRecord[not(EmpData)]"/>
</xsl:stylesheet>

&#34;身份模板&#34;复制一切,&#34;具体部分&#34;删除不需要的元素。