0

我已经看过很多关于此的帖子,但没有一个可以帮助我找出我的问题。

测试1.xml

<table>
    <row>
        <col1>A</col1>
    </row>
    <row>
        <col1>B</col1>
    </row>
    <row>
        <col1>C</col1>
    </row>
</table>

测试2.xml

<table>
    <row>
        <col1>A</col1>
        <col2>ABC</col2>
    </row>
    <row>
        <col1>B</col1>
        <col2>ABC</col2>
    </row>
    <row>
        <col1>A</col1>
        <col2>ABC</col2>
    </row>
    <row>
        <col1>C</col1>
        <col2>ABC</col2>
    </row>
    <row>
        <col1>A</col1>
        <col2>DEF</col2>
    </row>

</table>

测试.xsl (XSLT 1.0)

<xsl:variable name="input" select="document('test1.xml')/>

<xsl:template match="/">
    <xsl:apply-templates select="$input" mode="special"/>
</xsl:template>

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

<xsl:template match="Row" mode="special">
    <xsl:variable name="cols" select="document('test2.xml')/Table/Row[current()/Col1 = Col1]/Col2"/>
    <xsl:variable name="unique_cols" select="$cols[not(. =  preceding-sibling::*)]"/>

    <!-- Debug -->
    <xsl:for-each select="$unique_cols">
        <xsl:copy-of select="."/>
    </xsl:for-each>
    ----
</xsl:template>

预期输出:

<col2>ABC</col2>
<col2>DEF</col2>
----
<col2>ABC</col2>
----
<col2>ABC</col2>

电流输出:

<col2>ABC</col2>
<col2>ABC</col2>
<col2>DEF</col2>
----
<col2>ABC</col2>
----
<col2>ABC</col2>

$unique_cols 中的 col2 值应该根据 col1 值不同。如果可以在 $cols 中选择唯一的 col2 值,那就更好了。

4

2 回答 2

0

只需更换

    <xsl:variable name="unique_cols" select="$cols[not(. =  preceding-sibling::*)]"/>

    <xsl:variable name="unique_cols" select=
         "$cols[not(../col1 =  ../preceding-sibling::*/col1)]"/>

完整的转换(最初更正以修复大量词汇错误)现在变为(也使用我自己的文件-Uris):

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>

    <xsl:variable name="input" select=
      "document('file:///c:/temp/delete/test1.xml')"/>

    <xsl:template match="/">
        <xsl:apply-templates select="$input" mode="special"/>
    </xsl:template>

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

    <xsl:template match="row" mode="special">
        <xsl:variable name="cols" select=
        "document('file:///c:/temp/delete/test2.xml')
             /table
               /row[current()/col1 = col1]
                 /col2"/>
        <xsl:variable name="unique_cols" select=
             "$cols[not(../col1 =  ../preceding-sibling::*/col1)]"/>

        <!-- Debug -->
        <xsl:for-each select="$unique_cols">
            <xsl:copy-of select="."/>
        </xsl:for-each>
        ----
    </xsl:template>
</xsl:stylesheet>

文件是:

c:/temp/delete/test1.xml:

<table>
    <row>
        <col1>A</col1>
    </row>
    <row>
        <col1>B</col1>
    </row>
    <row>
        <col1>C</col1>
    </row>
</table>

和: c:/temp/delete/test2.xml:

<table>
    <row>
        <col1>A</col1>
        <col2>ABC</col2>
    </row>
    <row>
        <col1>B</col1>
        <col2>ABC</col2>
    </row>
    <row>
        <col1>A</col1>
        <col2>ABC</col2>
    </row>
    <row>
        <col1>C</col1>
        <col2>ABC</col2>
    </row>
</table>

当对任何 XML 文档(未使用)执行转换时,会产生所需的正确结果

<table>

   <col2>ABC</col2>
        ----

    <col2>ABC</col2>
        ----

    <col2>ABC</col2>
        ----

</table>
于 2012-11-03T03:39:45.247 回答
0

我想我可能已经根据另一篇帖子(https://groups.google.com/forum/?fromgroups#!topic/microsoft.public.xsl/i8FwJUD0r8U)上提供的答案弄清楚了这一点。

<xsl:variable name="cols" select=
   "document('test2.xml')/table/row[current()/col1 = col1]/col2[not(. = ../preceding-sibling::*/col2[current()/col1 = ../col1])]"/>

这似乎将唯一的 col2 值选择到 $cols 中,从而消除了对第二个变量的需要。

于 2012-11-06T16:37:15.077 回答