Xslt按属性通过XSLT匹配元素

时间:2012-05-10 22:41:45

标签: xslt

我有一个XSLT文件

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

  <xsl:param name="vrtfDoc2">
  </xsl:param>

  <xsl:variable name="vDoc2" select="$vrtfDoc2/*"/>

  File 1 TO File 2 MATCH

  <xsl:template match="node()|@*" name="identity">
    <xsl:param name="pDoc2"/>
    <xsl:copy>
      <xsl:apply-templates select="node()|@*">
        <xsl:with-param name="pDoc2" select="$pDoc2"/>
      </xsl:apply-templates>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="/">
    <xsl:apply-templates select="Topic/SubTopic/*">
      <xsl:with-param name="pDoc2" select="$vDoc2"/>
    </xsl:apply-templates>

    -----------------------

    File 2 TO File 1 MATCH

    <xsl:apply-templates select="$vDoc2">
      <xsl:with-param name="pDoc2" select="/*"/>
    </xsl:apply-templates>
  </xsl:template>

  <xsl:template match="Topic/SubTopic/*">
    <xsl:param name="pDoc2"/>
    <xsl:variable name="guid" select="../@Guid" />
    <table border="1" style="width:100%">
      <thead>
        <td>Current Element</td>
        <td>Left Guid</td>
        <td>Left</td>
        <td>Right</td>
        <td>Right Guid</td>
        <td>Diff Type</td>
      </thead>

      <xsl:if test="not(. = $pDoc2/*/*[name()=name(current())])">
      <tr>
        <td>
          <xsl:value-of select="name()"/>
        </td>
        <td>
          <xsl:value-of select="$guid"/>
        </td>
        <td>
          <xsl:value-of select="."/>
        </td>
        <td>
          <xsl:value-of select="$pDoc2/*/*[name()=name(current())]"/>
        </td>
        <td>

        </td>
        <td>Diff</td>
      </tr> 
    </xsl:if>
    <xsl:if test=". = $pDoc2/*/*[name()=name(current())]">
      <tr>
        <td>
          <xsl:value-of select="name()" />
        </td>
        <td>
          <xsl:value-of select="../@Guid"/>
        </td>
        <td>
          <xsl:value-of select="."/>
        </td>
        <td>
          <xsl:value-of select="$pDoc2/*/*[name()=name(current())]"/>
        </td>
        <td>
          <xsl:value-of select="$pDoc2/*/*[name()=name(current())]"/>
        </td>
        <td>Same</td>
      </tr>
    </xsl:if>
    </table>
  </xsl:template>
</xsl:stylesheet>

实质上,转换文件从左到右,然后从右到左检查相等。唯一的问题是我的xml文件有与

类似的代码段
  <SubTopic Guid="462AF46304694D4785EF3B7E642AD8A2">
    <Description xmlns="http://www.authorit.com/xml/authorit" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">Modification History</Description>
    <Text xmlns="http://www.authorit.com/xml/authorit" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <p id="4">Not Applicable</p>
    </Text>
  </SubTopic>

xslt按顺序从上到下给出了匹配元素的差异,但不保证它与 CORRECT 元素匹配。就是这样,它将比较右侧xml中的左侧比较xml中的<SubTopic Guid="462AF46304694D4785EF3B7E642AD8A2"><SubTopic Guid="462AF46304694D4785EF3B7E642AD8A2">进行比较。

该行

<xsl:variable name="guid" select="../@Guid" />

从左边的xml文件中给出了父guid,这是正确的,但我在下面尝试过变种

<xsl:if test="not(. = $pDoc2/*/*[name()=name(current())][@Guid=$guid])">

但是那个过程好像'[@ Guid = $ guid]'不在那里。

简而言之,xslt必须比较正确的元素,并且必须具有t

我知道我的xslt技能很低,但我确信我错过了一些明显的东西。

1 个答案:

答案 0 :(得分:1)

我看到$guid变量是使用../@Guid(因此是parent轴)构建的,然后XPath表达式正在寻找名称和guid的相等但是希望两者都匹配在同一水平上。也许它应该转换为[name() = name(current())][../@Guid = $guid]?如果不是这种情况,那么您可以发布输入的简化版本和预期结果吗?这将有助于我们帮助您调试转换。另外,. =比较将测试两个节点的字符串值的相等性。如果您希望它测试具有相同名称和父Guid的节点的存在,那么您需要将其缩短为not($pDoc2/*/*[name()=name(current())][../@Guid=$guid]