0

サードパーティから XML パッケージを受け取りました。サードパーティは、パッケージの「一部」を変換する XSL を提供しています...

CF(10) を使用して、パッケージからノード (子を含む) を「抽出」する必要があります。

パッケージは次のようになります (サイズを小さくすると、btu はメイン データ ノード内に複数の「データ」ノードを含めることができます... 幸いなことに、メイン データ ノードには既知の文字列 (この例では "X_STUFF") の ID があります。子を持つそのノードを取得したい...

<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>

パッケージ全体を変換しようとすると、最初のノード (「トリップ」ノード) または属性を持たないノード (XSL についてはよくわかりません) から「長さゼロ」の文字列エラーが発生しますが、私にはそのように思えます-情報のためにここにXSLを含めます-明らかに、「問題」は、「データ」ノードではないノードに対応するようにXSLを書き直すことで解決できます(名前は付けませんでしたdata/datum、それが物事を混乱させる場合は申し訳ありません..または、上記で提案したように、子を持つ「メインデータ」ノードをプルすることもできます(これは、私の観点からはより単純で、より「保守可能」になります-少なくとも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 に答える