如何获取上一节点和当前节点内部文本值之间的差异

时间:2017-09-26 15:36:29

标签: xml xslt

请你帮我解决这个问题。我想向每个节点插入一个节点。此节点包含此节点的“OriIndex”与前一节点的“OriIndex”之间的差异(此前只有一个)。编写XSLT时出现编译错误。

我的输入是:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
  <Test>
    <TestPhase>1</TestPhase>
    <TestFlow>1</TestFlow>
    <TestParameter>1</TestParameter>
    <OriIndex>0</OriIndex>
  </Test>
  <Test>
    <TestPhase>1</TestPhase>
    <TestFlow>1</TestFlow>
    <TestParameter>2</TestParameter>
    <OriIndex>1</OriIndex>
  </Test>
  <Test>
    <TestPhase>1</TestPhase>
    <TestFlow>3</TestFlow>
    <TestParameter>1</TestParameter>
    <OriIndex>2</OriIndex>
  </Test>
  <Test>
    <TestPhase>1</TestPhase>
    <TestFlow>2</TestFlow>
    <TestParameter>2</TestParameter>
    <OriIndex>3</OriIndex>
  </Test>

我的XML输出是(这是错误的,因为第二项的差异应该是1 =当前OriIndex(1) - 前一个OriIndex(0)。实际上我不知道如何做到这一点):

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Root>
  <Test>
    <TestPhase>1</TestPhase>
    <TestFlow>1</TestFlow>
    <TestParameter>1</TestParameter>
    <OriIndex>0</OriIndex>
    <SortedIndex>0</SortedIndex>
    <Diff>1</Diff>
  </Test>
  <Test>
    <TestPhase>1</TestPhase>
    <TestFlow>1</TestFlow>
    <TestParameter>2</TestParameter>
    <OriIndex>1</OriIndex>
    <SortedIndex>1</SortedIndex>
    <Diff>0</Diff>
  </Test>
.
.
.
.

我的XSLT是:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:output method="xml" encoding = "UTF-8" indent="yes" omit-xml-declaration="no" standalone="yes" />


  <xsl:template match="Root">
   <xsl:copy>
    <xsl:apply-templates select="Test">
      <xsl:sort select="TestPhase" data-type="number" order="ascending"/>
      <xsl:sort select="TestFlow" data-type="number" order="ascending"/>
      <xsl:sort select="TestParameter" data-type="number" order="ascending"/>
    </xsl:apply-templates>
   </xsl:copy>
  </xsl:template>


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


   <xsl:template match="Test">
     <xsl:copy>
       <xsl:apply-templates select="@* | *"/> 
       <SortedIndex><xsl:value-of select="position() - 1"/></SortedIndex>
       <Diff><xsl:value-of select="OriIndex - OriIndex[position() - 1]" /></Diff>
     </xsl:copy>
   </xsl:template>


</xsl:stylesheet>

请帮忙。

非常感谢你。非常感谢您的努力。

干杯!

1 个答案:

答案 0 :(得分:0)

  

此节点[应]包含此节点的“OriIndex”与前一节点的“OriIndex”之间的差异(此前只有一个)。

上下文节点的前一个兄弟的<OriIndex>子节点的XPath表达式(相当于前面的兄弟元素,因为只有元素和文档根可以有元素子节点)是

preceding-sibling::*[1]/OriIndex

对于您的特定数据和上下文,您可以编写更明确的表达式:

preceding-sibling::Test[1]/OriIndex

总的来说,您可以将它们放在这个模板中:

    <xsl:template match="Test">
      <xsl:copy>
        <xsl:apply-templates select="@* | *"/> 
        <SortedIndex><xsl:value-of select="position() - 1"/></SortedIndex>
        <Diff><xsl:value-of
            select="OriIndex - preceding-sibling::Test[1]/OriIndex" /></Diff>
      </xsl:copy>
    </xsl:template>