0

我有一个来自第三方的传入 XML 包 - 他们提供了一个 XSL 来转换包的“部分”......

我需要使用 CF(10) 从包中“提取”节点(带子节点)

包看起来像这样(减小了大小 - btu 可以在主数据节点内包含多个“数据”节点......幸运的是,主数据节点有一个已知字符串的 ID(本例中为“X_STUFF”) - 所以我特别想抓住那个带有孩子的节点......

<trip>
<eventTS>2012-09-19T14:54:42.0Z</eventTS>   
<eventX>0</eventX>
<eventY>10</eventY>
<eventType>driverRouteRequest</eventType>
<data id="X_STUFF">
    <datum name="A" value="..."/>
    <datum name="B" value="..."/>
    <data id="...">
        <datum name="a" value="0"/>
        <datum name="b" value="0"/>
        <datum name="c" value=""/>
    </data>
</data>
</trip>

如果我尝试转换整个包,我会从第一个节点 - “trip”节点 - 或任何没有属性的节点 - 我对 XSL 不太了解 - 但它会收到一个“零长度”字符串错误对我来说似乎是这样-我将在此处包含 XSL 仅供参考-显然,可以通过重写 XSL 以容纳不是“数据”节点的节点来解决“问题”(我没有命名它们数据/数据,对不起,如果这让事情变得混乱)..或者我可以拉出带有孩子的“主要数据”节点......正如我上面提出的那样(这会更简单,并且从我的角度来看更“可维护” - 至少直到我可以了解有关 XSL 的更多信息)

<?xml version="1.0" encoding="UTF-8"?>

<xsl:template match="//*">
    <xsl:comment>Translated with datum-to-elements v1.0</xsl:comment>
    <xsl:element name="returnMessage">
        <xsl:call-template name="processChildren">
        </xsl:call-template>
    </xsl:element>
</xsl:template>

<xsl:template name="processChildren">
    <xsl:param name="branch"/>
    <xsl:variable name="AValue" select="./datum[@name='A']/@value" />
    <xsl:variable name="aValue" select="./datum[@name='a']/@value" />

    <xsl:variable name="newElementName">
        <xsl:choose>
            <xsl:when test="string-length($AValue) > 0">
                <xsl:value-of select="$AValue"/>
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="$aValue"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:variable>

    <xsl:variable name="skipAttributeName">
        <xsl:choose>
            <xsl:when test="string-length($AValue) > 0">
                <xsl:text>A</xsl:text>
            </xsl:when>
            <xsl:otherwise>
                <xsl:text>a</xsl:text>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:variable>

    <xsl:element name="{$newElementName}">
        <xsl:for-each select="child::*">
            <xsl:choose>
                <xsl:when test="count(child::*) > 0 ">
                    <xsl:call-template name="processChildren">
                        <xsl:with-param name="branch" select="child::*"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:if test="@name != $skipAttributeName">
                        <xsl:element name="{@name}">
                            <xsl:choose>
                                <xsl:when test="@value = 'y' or @value = 'Y'">true</xsl:when>
                                <xsl:when test="@value = 'n' or @value = 'N'">false</xsl:when>
                                <xsl:otherwise>
                                    <xsl:value-of select="@value"/>
                                </xsl:otherwise>
                            </xsl:choose>
                        </xsl:element>
                    </xsl:if>
                </xsl:otherwise>
            </xsl:choose>

        </xsl:for-each>
    </xsl:element>

</xsl:template>
</xsl:stylesheet>
4

1 回答 1

0
<cfscript> 

myxmldoc = XmlParse("C:/ColdFusion10/cfusion/wwwroot/test.xml"); 

myContent = XmlSearch(myxmldoc, "//*[@id='X_STUFF']"); 

writeDump(myContent);

</cfscript>

xPath 字符串也归功于@Miguel-F

于 2012-09-20T21:05:50.860 回答