XSLT 用于从一个属性剪切并粘贴到另一个 xslt 1.0

XSLT for cut from one attribute and paste into another xslt 1.0

我必须对传入请求进行 XML 到 XML 的转换。 下面是示例的片段 XML

样本XML

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header/>
<soapenv:Body>
    <OrderCreate Version="2.0.2">
        <OrderCreateBody xmlns="urn:cidx:names:specification:ces:schema:all:5:1:1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <OrderCreateDetails>
                <OrderCreateProductLineItem>
                    <LineNumber>1</LineNumber>
                    <PurchaseOrderLineItemNumber>1</PurchaseOrderLineItemNumber>
                    <ProductIdentification>
                        <ProductIdentifier Agency="AssignedByManufacturer">11100668</ProductIdentifier>
                        <ProductName>ACCELERON INSEC-FUNG 15GA</ProductName>
                        <ProductDescription>ACCELERON INSEC-FUNG 15GA</ProductDescription>
                    </ProductIdentification>
                    <ProductQuantity>
                        <Measurement>
                            <MeasurementValue>6</MeasurementValue>
                            <UnitOfMeasureCode Domain="UN-Rec-20">EA</UnitOfMeasureCode>
                        </Measurement>
                    </ProductQuantity>
                    <ScheduleDateTimeInformation ScheduleType="RequestedDelivery">
                        <DateTimeInformation>
                            <DateTime DateTimeQualifier="On">20141201000000</DateTime>
                        </DateTimeInformation>
                    </ScheduleDateTimeInformation>
                </OrderCreateProductLineItem>
            </OrderCreateDetails>
        </OrderCreateBody>
    </OrderCreate>
</soapenv:Body>

对于上面的XML我需要改变这个值

    <ProductIdentification>
    <ProductIdentifier Agency="AssignedByManufacturer">11100668</ProductIdentifier>
    <ProductName>ACCELERON INSEC-FUNG 15GA</ProductName>
    <ProductDescription>ACCELERON INSEC-FUNG 15GA</ProductDescription>
</ProductIdentification>

到这个值

<ProductIdentification Agency="AssignedByManufacturer">
<ProductIdentifier>11100668</ProductIdentifier>
<ProductName>ACCELERON INSEC-FUNG 15GA</ProductName>
<ProductDescription>ACCELERON INSEC-FUNG 15GA</ProductDescription>
<ProductGradeDescription/>
<ProductClassification/>

下面是我试过但没有用的 XSL。

  <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="/*[local-name()='Envelope']/*[local-name()='Body']/*[local-name()='OrderCreate']/*[local-name()='OrderCreateBody']/*[local-name()='OrderCreateDetails']/*[local-name()='OrderCreateProductLineItem']/*[local-name()='ProductIdentification']">
        <xsl:copy>
            <xsl:apply-templates select="/*[local-name()='Envelope']/*[local-name()='Body']/*[local-name()='OrderCreate']/*[local-name()='OrderCreateBody']/*[local-name()='OrderCreateDetails']/*[local-name()='OrderCreateProductLineItem']/*[local-name()='ProductIdentification']/*[local-name()='ProductIdentifier']"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="ProductIdentifier">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

我这样做的方式是错误的,因为我没有得到想要的输出。谁能指出解决此问题的正确方法?

如果您知道来源 XML 使用的命名空间 URI,那么最好的方法是在您的样式表中声明它,为其分配一个前缀并在寻址来源中的节点时使用该前缀 XML:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ces="urn:cidx:names:specification:ces:schema:all:5:1:1">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

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

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

<xsl:template match="ces:ProductIdentifier/@Agency"/>

</xsl:stylesheet>

这个returns下面的结果(片段):

...
<ProductIdentification Agency="AssignedByManufacturer">
    <ProductIdentifier>11100668</ProductIdentifier>
    <ProductName>ACCELERON INSEC-FUNG 15GA</ProductName>
    <ProductDescription>ACCELERON INSEC-FUNG 15GA</ProductDescription>
</ProductIdentification>
...

我不知道您请求的结果中显示的 <ProductGradeDescription/> 应该来自哪里。


编辑:

How can we add those elements by just directly declaring it?

您可以直接将它写入输出树 - 但如果您希望它与其父级和兄弟级位于同一名称空间中,则必须将其放在那里:

<xsl:template match="ces:ProductIdentification">
    <xsl:copy>
        <xsl:copy-of select="ces:ProductIdentifier/@Agency"/>
        <xsl:apply-templates select="@*|node()"/>
        <ces:ProductGradeDescription/>
    </xsl:copy>
</xsl:template>

或:

<xsl:template match="ces:ProductIdentification">
    <xsl:copy>
        <xsl:copy-of select="ces:ProductIdentifier/@Agency"/>
        <xsl:apply-templates select="@*|node()"/>
        <ProductGradeDescription xmlns="urn:cidx:names:specification:ces:schema:all:5:1:1"/>
    </xsl:copy>
</xsl:template>