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

时间:2015-01-23 18:56:23

标签: xslt attributes

我必须对传入请求进行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>

我这样做的方式是错误的,因为我没有获得欲望输出。有人能指出我正确的方法来解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

如果您知道源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>

返回以下结果(片段):

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

我看不到您要求的结果中显示的<ProductGradeDescription/>应该来自哪里。


编辑:

  

我们如何通过直接声明来添加这些元素?

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

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