在循环中使用XML和XSLT串联字段

时间:2018-11-19 04:07:07

标签: xml xslt

我有一个源XML文件,我想将其转换为另一个具有不同格式的XML文件。我的源XML文件使用属性(我认为,如果我在这里错了,请纠正我),并且目标XML格式应为纯父子XML标记。我没有直截了当的方法的问题。

但是,我需要找到一种使用XSLT将2个或更多字段合并为单个元素的方法。我尝试使用变量然后将它们串联在一起,但是,变量存在一些问题,只能分配一次。

我的XML是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns="http://www.taleo.com/ws/integration/toolkit/2005/07" xmlns:ns1="http://www.taleo.com/ws/integration/toolkit/2005/07" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Attributes><Attribute name="count">1</Attribute><Attribute name="duration">0:00:00.109</Attribute><Attribute name="entity">SourcingRequest</Attribute><Attribute name="mode">XML</Attribute><Attribute name="version">http://www.taleo.com/ws/tee800/2009/01</Attribute></Attributes><Content>
<ExportXML xmlns="http://www.taleo.com/ws/integration/toolkit/2005/07">
    <record>
        <field name="Title">Project Analyst</field>
        <field name="Position_ID">64057</field>
        <field name="RequisitionNumber">180767</field>
        <field name="LocationCode">HQ</field>
        <field name="LocationName">Headquarters</field>
        <field name="LocationCountry">Country</field>
        <field name="LocationCity">City</field>
    </record>
</ExportXML></Content></Document>

然后我的XSL是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xmlns:itk="http://www.taleo.com/ws/integration/toolkit/2005/07">
  <xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="yes" cdata-section-elements="DescriptionInternal DescriptionExternal QualificationExternal QualificationInternal"/>
  <xsl:template match="text()"/>
  <xsl:template match="itk:record">
    <xsl:element name="Job">
        <xsl:for-each select="itk:field">
            <!-- Set variables -->
            <xsl:variable name="location_code">
              <xsl:if test="@name='LocationCode'">
                <xsl:value-of select="." />
              </xsl:if>
            </xsl:variable>
            <xsl:variable name="location_name">
              <xsl:if test="@name='LocationName'">
                <xsl:value-of select="." />
              </xsl:if>
            </xsl:variable>
            <xsl:variable name="location_country">
              <xsl:if test="@name='LocationCountry'">
                <xsl:value-of select="." />
              </xsl:if>
            </xsl:variable>
            <xsl:variable name="location_city">
              <xsl:if test="@name='LocationCity'">
                <xsl:value-of select="." />
              </xsl:if>
            </xsl:variable>
            <xsl:choose>
              <xsl:when test="@name='LocationCode' or @name='LocationName' or @name='LocationCountry' or @name='LocationCity'">
                <xsl:if test="@name='LocationCity'">
                  <xsl:element name="Location">
                    <xsl:value-of select="concat($location_code,$location_name,$location_country,$location_city)" />
                  </xsl:element>
                  <xsl:element name="LocationCode">
                    <xsl:value-of select="$location_code" />
                  </xsl:element>
                  <xsl:element name="LocationName">
                    <xsl:value-of select="$location_code" />
                  </xsl:element>
                </xsl:if>
              </xsl:when>
              <xsl:otherwise>
                <!-- Set variables. -->
                <xsl:variable name="NodeName" select="@name"/>
                <xsl:element name="{@name}">                
                    <xsl:value-of select="."/>
                </xsl:element>                
              </xsl:otherwise>
            </xsl:choose>
        </xsl:for-each>             
    </xsl:element>
  </xsl:template>
</xsl:stylesheet>

但是,我的输出是这样的:

<Job>
   <Title>Project Analyst</Title>
   <Position_ID>64057</Position_ID>
   <RequisitionNumber>180767</RequisitionNumber>
   <Location>City</Location>
</Job>

但是我想要的输出应该是这样的:

<Job>
   <Title>Project Analyst</Title>
   <Position_ID>64057</Position_ID>
   <RequisitionNumber>180767</RequisitionNumber>
   <Location>HQ Headquarters Country City</Location>
</Job>    

如果我的猜测正确,那么我认为循环会重置变量的值。因此,最后什么都将是价值。

还有其他方法可以实现所需的输出。尽管我的源文件可以更改为CSV格式,但我的选项仅限于XSL。

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

您为什么不能简单地这样做?

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:itk="http://www.taleo.com/ws/integration/toolkit/2005/07" 
exclude-result-prefixes="itk">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="/itk:Document">
    <xsl:apply-templates select="itk:Content/itk:ExportXML/itk:record"/>
</xsl:template>

<xsl:template match="itk:record">
    <Job>
        <Title>
            <xsl:value-of select="itk:field[@name='Title']" />
        </Title>
        <Position_ID>
            <xsl:value-of select="itk:field[@name='Position_ID']" />
        </Position_ID>
        <RequisitionNumber>
            <xsl:value-of select="itk:field[@name='RequisitionNumber']" />
        </RequisitionNumber>
        <Location>
            <xsl:value-of select="itk:field[@name='LocationCode']" />
            <xsl:text> </xsl:text>
            <xsl:value-of select="itk:field[@name='LocationName']" />
            <xsl:text> </xsl:text>
            <xsl:value-of select="itk:field[@name='LocationCountry']" />
            <xsl:text> </xsl:text>
            <xsl:value-of select="itk:field[@name='LocationCity']" />
        </Location>
    </Job>    
</xsl:template>

</xsl:stylesheet>

或者,如果使用XSLT 2.0,甚至更简单:

<xsl:stylesheet version="2.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xpath-default-namespace="http://www.taleo.com/ws/integration/toolkit/2005/07" >
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="/Document">
    <xsl:apply-templates select="Content/ExportXML/record"/>
</xsl:template>

<xsl:template match="record">
    <Job>
        <xsl:for-each select="field[not(starts-with(@name, 'Location'))]">
            <xsl:element name="{@name}">
                <xsl:value-of select="." />
            </xsl:element>
        </xsl:for-each>
        <Location>
            <xsl:value-of select="field[starts-with(@name, 'Location')]" />
        </Location>
    </Job>    
</xsl:template>

</xsl:stylesheet>