XSL逐节点值

时间:2017-03-13 14:17:02

标签: xslt xslt-1.0 xslkey

我有一个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,我们需要将“action”标记中的ID值替换为相应的“interfaceAction_externalId”值。 因此,对于操作ID 33632,我们将复制并替换为“33633”的值(因为我们在parameneter / name / @ id 33632 = action / @ id中匹配)。

副本效果很好我得到了我需要的所有信息,但似乎action / @ id没有被替换。 我以为我会使用一个键来保存action / @ id的值,然后在模板匹配中使用它来替换来自interfaceAction_externalId的值,但它不起作用,我不知道我在做什么错。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

如果您使用<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>