0

セカンダリまたは別の xml ファイルのデータを使用して、以下の XML の要素を更新しようとしています。入力 XML ファイルと 2 次 XML ファイルの両方に同じ数のセグメントがあります。セカンダリ XML の最初のセグメントで値を取得し、INPUT xml の要素を更新する必要があります。XSLを使用して実行できるかどうかはわかりませんが、誰かが私を案内してくれますか?

具体的には、セカンダリ XML の //PDetails/PStatus/Code および //PDetails/PStatus/Description 値に基づいて<indicator></indicator>、それぞれの INPUT XML の値を更新しようとしています。<iOSection>

以下は入力 XML ファイルです。

<IResponse>
    <iOSection>
        <Details>           
            <Info>
                <pNumber>FB061689</pNumber>
                <indicator></indicator>
                <Identifier>1</Identifier>
            </Info>         
        </Details>
        <Token>
            <Reference>1UUYD05BHM21OJCK3881C7F</Reference>
        </Token>
    </iOSection>
    <iOSection>
        <Details>           
            <Info>
                <pNumber>FB061690</pNumber>
                <indicator></indicator>
                <Identifier>2</Identifier>
            </Info>
        </Details>
        <Token>
            <Reference>1UUYD05BHM21OJCK3881C7F</Reference>
        </Token>
    </iOSection>
</IResponse>

以下はセカンダリ XML ファイルです。RSPDetails という xsl 変数で使用できます。

<RS PartID="abcd" SysID="mnc">  
    <PDetails>
        <PN>FB063586</PN>
        <PStatus>
            <Code>0</Code>
            <Description>Cancelled</Description>
        </PStatus>     
    </PDetails>
    <PDetails>
        <Error>
            <Code>92</Code>
            <Message>failed</Message>
        </Error>
    </PDetails>
</RS>

の値は<indicator>、 //PDetails/PStatus/Code = '0' および //PDetails/PStatus/Description = 'Cancelled' の場合は 'YES' である必要があり、それ以外の場合はすべて 'NO' である必要があります。

条件は、ポジション 1 データ<iOSection>を使用してポジション 1に適用し、ポジション 2 データを使用してポジション 2 に適用する必要があります。<PDetails><iOSection><PDetails>

期待される OUTPUT は次のとおりです。

<IResponse>
    <iOSection>
        <Details>           
            <Info>
                <pNumber>FB061689</pNumber>
                <indicator>YES</indicator>
                <Identifier>1</Identifier>
            </Info>         
        </Details>
        <Token>
            <Reference>1UUYD05BHM21OJCK3881C7F</Reference>
        </Token>
    </iOSection>
    <iOSection>
        <Details>           
            <Info>
                <pNumber>FB061690</pNumber>
                <indicator>NO</indicator>
                <Identifier>2</Identifier>
            </Info>
        </Details>
        <Token>
            <Reference>1UUYD05BHM21OJCK3881C7F</Reference>
        </Token>
    </iOSection>
</IResponse>

私はXSLの下で試しましたが、どこにも近づきませんでした

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="#all" >

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

    <xsl:template match="/*[local-name()='IResponse']/*[local-name()='iOSection']/*[local-name()='Details']/*[local-name()='Info']/*[local-name()='indicator']">

        <xsl:variable name="RSDetails">
            <RS PartID="abcd" SysID="mnc">
                <PDetails>
                    <PN>FB063586</PN>
                    <PStatus>
                        <Code>0</Code>
                        <Description>Cancelled</Description>
                    </PStatus>
                </PDetails>
                <PDetails>
                    <Error>
                        <Code>92</Code>
                        <Message>failed</Message>
                    </Error>
                </PDetails>
            </RS>       
        </xsl:variable> 

        <xsl:element name="indicator">
            <xsl:variable name="PStatus">
                <xsl:value-of select="$RSDetails/RS/PDetails/PStatus" />
            </xsl:variable>
            <xsl:variable name="Message">
                <xsl:value-of select="$RSDetails/RS/PDetails/Message" />
            </xsl:variable>

            <xsl:choose>
                <xsl:when test="$PStatus='0' and $Message='Cancelled'">
                    <xsl:value-of select="'YES'" />
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of select="'NO'" />
                </xsl:otherwise>
            </xsl:choose>

        </xsl:element>
        <xsl:copy-of select="@*" />
    </xsl:template>
</xsl:stylesheet>
4

1 に答える 1

1

ここでやりたいことは、外部ファイル内の一致するノードから値を検索することです。あなたはそうは言いませんでしたが、一致するノードは、PN値が localと一致するノードであると思いますpNumber

XSLT1.0

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:param name="RSPDetails" select="document('your_other_file.xml')" />
<xsl:key name="rsp" match="PDetails" use="PN" />

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

<xsl:template match="indicator">
    <xsl:copy>
        <xsl:variable name="pnum" select="../pNumber"/>
        <!-- switch context to the other file -->
        <xsl:for-each select="$RSPDetails">
            <xsl:choose>
                <xsl:when test="key('rsp', $pnum)/PStatus/Code=0 and key('rsp', $pnum)/PStatus/Description='Cancelled'">YES</xsl:when>
                <xsl:otherwise>NO</xsl:otherwise>
            </xsl:choose>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

編集:

位置に基づいて検索するには、次を試してください。

<xsl:template match="indicator">
    <xsl:copy>
        <xsl:variable name="i">
            <xsl:number count="iOSection"/>
        </xsl:variable>
        <xsl:variable name="detail" select="$RSPDetails/RS/PDetails[number($i)]"/>
        <xsl:choose>
            <xsl:when test="$detail/PStatus/Code=0 and $detail/PStatus/Description='Cancelled'">YES</xsl:when>
            <xsl:otherwise>NO</xsl:otherwise>
        </xsl:choose>
    </xsl:copy>
</xsl:template>

この<xsl:key>シナリオでは、命令は必要ありません。

于 2015-01-08T20:00:54.050 に答える