XSL组按节点值



我有XSL密钥分组的情况。目标是根据ID匹配替换值。

输入:

<?xml version="1.0" encoding="UTF-8"?>
<root>
<message-in>
    <actions>
        <stop>
            <action id="33632">
                <text>DefaultComment</text>
                <planning-status>finished</planning-status>
                <realised-times>
                    <starttime>2017-03-13T12:43:54</starttime>
                    <finishtime>2017-03-13T13:15:21</finishtime>
                </realised-times>
            </action>
        </stop>
        <stop>
            <action id="33635">
                <planning-status>started</planning-status>
                <realised-times>
                    <starttime>2017-03-13T13:15:21</starttime>
                </realised-times>
            </action>
        </stop>
    </actions>
</message-in>
<output_getquerydata>
    <queries>
        <query name="fat">
            <parameters>
                <parameter name="id">33632</parameter>
            </parameters>
            <queryErrors/>
            <queryResults>
                <record id="1">
                    <column name="interfaceAction_externalId">33633OREA</column>
                </record>
            </queryResults>
        </query>
    </queries>
</output_getquerydata>
<output_getquerydata>
    <queries>
        <query name="fat">
            <parameters>
                <parameter name="id">33635</parameter>
            </parameters>
            <queryErrors/>
            <queryResults>
                <record id="1">
                    <column name="interfaceAction_externalId">536313OREA</column>
                </record>
            </queryResults>
        </query>
    </queries>
</output_getquerydata>
</root>

XSL:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" omit-xml-declaration="no" encoding="utf-8"/>
<xsl:strip-space elements="*"/>
<xsl:key name="actionKey" match="stop" use="action/@id"/>
<xsl:template match="@* | node()">
    <xsl:copy>
        <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
</xsl:template>
<xsl:template match="/">
    <root>
        <xsl:copy-of select="//message-in"/>
    </root>
</xsl:template>
<xsl:template match="action/@id">
    <xsl:attribute name="id"><xsl:value-of select="substring-before(//output_getquerydata/queries/query/parameters/parameter[key('actionKey', @id)]/queryResults/record/column[@name='interfaceAction_externalId'],'OREA')"/></xsl:attribute>
</xsl:template>
</xsl:stylesheet>

我有多个具有匹配"查询"节点的"动作"节点。目标是,对于每个操作ID,我们需要用" Interfaceaction_externalId"值替换"操作"标签的ID值。因此,对于Action ID 33632,我们将复制并替换为" 33633"(因为我们在Parameneter/name/@ID中具有匹配项33632 = Action/@ID)。

副本运行良好,我得到了我需要的所有信息,但是似乎Action/@ID并未更换。我以为我将使用钥匙来保存操作值/@ID,然后在模板匹配中使用该键以替换为Interfaceaction_externalID的值,但它不起作用,我不确定我在做什么错误。

感谢您的帮助!

只有在使用 <xsl:apply-templates select="//message-in"/>而不是 <xsl:copy-of select="//message-in"/>

时,整个方法才有意义

至于使用钥匙,我认为您想要

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes" omit-xml-declaration="no" encoding="utf-8"/>
    <xsl:strip-space elements="*"/>
    <xsl:key name="ref-query"
        match="output_getquerydata/queries/query/queryResults/record/column[@name='interfaceAction_externalId']"
        use="ancestor::query/parameters/parameter[@name = 'id']"/>
    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="/">
        <root>
            <xsl:apply-templates select="//message-in"/>
        </root>
    </xsl:template>
    <xsl:template match="action/@id">
        <xsl:attribute name="id"><xsl:value-of select="substring-before(key('ref-query', .),'OREA')"/></xsl:attribute>
    </xsl:template>
</xsl:stylesheet>

相关内容

  • 没有找到相关文章