XSLT映射父节点的不同子节点

时间:2014-09-22 13:11:47

标签: xml xslt

我最近开始使用XSLT。我正在尝试获取此xml集的报告

xml中的一个看起来像下面的那个并命名为(company_a.xml)

<company title="abc" >
<section>
<in-proc uid="HR.xml">
    <details>
        <empname>abcd1</empname>
        <id>xyz1</id>
        <empname>abcd2</empname>
        <id>xyz2</id>
        <empname>abcd3</empname>
        <id>xyz3</id>
    </details>
</in-proc>      
<out-proc uid="manufacturing.xml">
    <title>any</title>
    <details>
        <empname>abcd4</empname>
        <id>xyz4</id>
    </details>
</out-proc>
</section>
</company>

使用的XSL是

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes"/>
    <xsl:template match="/">
    <xsl:result-document href="Emp_data.csv">
            <xsl:for-each select="//file">
                <xsl:variable name="filename" select="."/>
                <xsl:variable name="fileid" select="substring-before(., '.xml')"/>
                <xsl:for-each select="document($filename)">
                    <xsl:for-each select="company/section/*/details">
                        <xsl:variable name="business" select="local-name(..)"/>
                        <xsl:variable name="dept" select="substring-before(ancestor::*/@uid, '.xml')"/>
                            <xsl:value-of select="concat('&quot;', id , '&quot;,&quot;', empname , '&quot;,&quot;', $fileid, '&quot;,&quot;', $dept, '&quot;,&quot;', $business, '&quot;&#xA;')"/>
                    </xsl:for-each>
                </xsl:for-each>
            </xsl:for-each>
    </xsl:result-document>
    </xsl:template>
</xsl:stylesheet>

正在给予

xyz1,abcd1,company_a,HR,in-proc
xyz4,abcd4,company_a,manufacturing,out-proc

我正在寻找的结果是

xyz1,abcd1,company_a,HR,in-proc
xyz2,abcd2,company_a,HR,in-proc
xyz3,abcd3,company_a,HR,in-proc
xyz4,abcd4,company_a,manufacturing,out-proc

我尝试使用

<xsl:for-each select="id"> 
    <xsl:value-of select="."/>

但后来我不知道如何获取empname

我正在使用file_list(文档($ filename)),因为有超过100个文件,其中有数百万行可供查看

请建议。

1 个答案:

答案 0 :(得分:0)

如果您更换

                <xsl:for-each select="company/section/*/details">
                    <xsl:variable name="business" select="local-name(..)"/>
                    <xsl:variable name="dept" select="substring-before(ancestor::*/@uid, '.xml')"/>
                        <xsl:value-of select="concat('&quot;', id , '&quot;,&quot;', empname , '&quot;,&quot;', $fileid, '&quot;,&quot;', $dept, '&quot;,&quot;', $business, '&quot;&#xA;')"/>
                </xsl:for-each>

                <xsl:for-each select="company/section/*/details/empname">
                    <xsl:variable name="business" select="local-name(../..)"/>
                    <xsl:variable name="dept" select="substring-before(ancestor::*/@uid, '.xml')"/>
                        <xsl:value-of select="concat('&quot;', following-sibling::id[1] , '&quot;,&quot;', . , '&quot;,&quot;', $fileid, '&quot;,&quot;', $dept, '&quot;,&quot;', $business, '&quot;&#xA;')"/>
                </xsl:for-each>

然后你应该为每个现有empname获得一行。