1

我正在尝试使用 XSLT 组合 2 个兄弟节点值。我已经有一个 XSLT 表,它已经组合了相同的节点,但是我无法弄清楚如何组合 2 个兄弟节点而不弄乱已经存在的东西。

XML

<?xml version="1.0" encoding="UTF-8"?>
  <root xmlns:fm="http://www.filemaker.com/fmpdsoresult">
    <ROW xmlns="http://www.filemaker.com/fmpdsoresult">
      <Sign_Type>BB-1</Sign_Type>
      <fm:Floor xmlns="">1</fm:Floor>
      <fm:Location xmlns="">2</fm:Location>
      <Line1>ELEVATOR MACHINE ROOM 107</Line1>
    </ROW>
    <ROW xmlns="http://www.filemaker.com/fmpdsoresult">
      <Sign_Type>BB-1</Sign_Type>
      <fm:Floor xmlns="">1</fm:Floor>
      <fm:Location xmlns="">3</fm:Location>
      <Line1>ELEVATOR MACHINE ROOM 107</Line1>
    </ROW>
    <ROW xmlns="http://www.filemaker.com/fmpdsoresult">
      <Sign_Type>BB-1</Sign_Type>
      <fm:Floor xmlns="">1</fm:Floor>
      <fm:Location xmlns="">4</fm:Location>
      <Line1>ELEVATOR MACHINE ROOM 107</Line1>
    </ROW>
    <ROW xmlns="http://www.filemaker.com/fmpdsoresult">
      <Sign_Type>BB-1</Sign_Type>
      <fm:Floor xmlns="">1</fm:Floor>
      <fm:Location xmlns="">5</fm:Location>
      <Line1>ELEVATOR MACHINE ROOM 107</Line1>
    </ROW>
  </root>

XSL

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fm="http://www.filemaker.com/fmpdsoresult">
<xsl:output method="xml" indent="yes"/>
<xsl:key name="artTypeNames" match="fm:ROW" use="concat(fm:Sign_Type, '||', fm:Line1)"/>
 <xsl:template match="fm:FMPDSORESULT">
    <ROOT>
        <xsl:apply-templates select="fm:ROW[count(. | key('artTypeNames', concat(fm:Sign_Type, '||', fm:Line1))[1]) = 1]">
            <xsl:sort select="fm:Sign_Type" />
        </xsl:apply-templates>
    </ROOT>
 </xsl:template>

 <xsl:template match="fm:ROW">
        <xsl:copy>
            <xsl:apply-templates select="fm:Sign_Type" />

            <fm:Location>
                <xsl:apply-templates select="key('artTypeNames', concat(fm:Sign_Type,   '||', fm:Line1))/fm:Location" /> 
            </fm:Location>
            <xsl:apply-templates select="fm:Line1" />
        </xsl:copy>
</xsl:template>

<xsl:template match="fm:Location">
    <xsl:if test="position() &gt; 1">, </xsl:if>
    <xsl:value-of select="." />
</xsl:template>

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

</xsl:stylesheet>   

输出应该是什么样子:

 <?xml version="1.0" encoding="UTF-8"?>
  <root xmlns:fm="http://www.filemaker.com/fmpdsoresult">
    <ROW xmlns="http://www.filemaker.com/fmpdsoresult">
      <Sign_Type>BB-1</Sign_Type>
      <fm:Location xmlns="">1-2, 1-3, 1-4, 1-5</fm:Location>
      <Line1>ELEVATOR MACHINE ROOM 107</Line1>
    </ROW>
  </root>

任何人都可以帮助我确定我需要在哪里以及需要更改哪些内容才能完成这项工作?谢谢!

4

1 回答 1

1

也许这只是您的代码中的一个错字,但您的第一个模板与您的 XML 示例中不存在的元素FMPDSORESULT匹配!

<xsl:template match="fm:FMPDSORESULT">

由于这不匹配任何内容,因此应用内置模板,并且它们最终将使用与您的 XML中四个ROW元素中的每一个匹配fm:ROW的模板。

你应该在元素上匹配

<xsl:template match="root">

至于组合兄弟姐妹,我想你是说你希望输出Floor元素和Location元素。例如,您可以在此处使用前兄弟姐妹。

<xsl:value-of select="preceding-sibling::fm:Floor[1]" />

或者,这种语法也可以使用;只需获取当前父级的唯一Floor元素

<xsl:value-of select="../fm:Floor" />

试试这个 XSLT

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fm="http://www.filemaker.com/fmpdsoresult">
<xsl:output method="xml" indent="yes"/>
<xsl:key name="artTypeNames" match="fm:ROW" use="concat(fm:Sign_Type, '||', fm:Line1)"/>
 <xsl:template match="root">
    <ROOT>
        <xsl:apply-templates select="fm:ROW[count(. | key('artTypeNames', concat(fm:Sign_Type, '||', fm:Line1))[1]) = 1]">
            <xsl:sort select="fm:Sign_Type" />
        </xsl:apply-templates>
    </ROOT>
 </xsl:template>

 <xsl:template match="fm:ROW">
        <xsl:copy>
            <xsl:apply-templates select="fm:Sign_Type" />

            <fm:Location>
                <xsl:apply-templates select="key('artTypeNames', concat(fm:Sign_Type,   '||', fm:Line1))/fm:Location" /> 
            </fm:Location>
            <xsl:apply-templates select="fm:Line1" />
        </xsl:copy>
</xsl:template>

<xsl:template match="fm:Location">
    <xsl:if test="position() &gt; 1">, </xsl:if>
    <xsl:value-of select="../fm:Floor" />
    <xsl:text>-</xsl:text>
    <xsl:value-of select="." />
</xsl:template>

<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()" />
    </xsl:copy>
</xsl:template>
</xsl:stylesheet>   
于 2013-11-12T08:38:34.297 回答