我有一个源xml如下
<customerSource>
<Name>abc</Name>
<Account>123</Account>
<AccountInfoSource>
<AccountLocaiton>Florida-MI</AccountLocaiton>
<AccountZip>12341</AccountZip>
<AccountBank>BOA</AccountBank>
<AccountBalance>0.0001</AccountBalance>
<AccountStatus>Active</AccountStatus>
.
.
.
.
.
</AccountInfoSource>
<Employed>Yes</Employed>
</customerSource>
我可以在AccountInfoSource中有任何元素。所以,我必须复制AccountInfoSource记录数据到AccountInfoDestination,你能帮助吗?
我正在尝试如下
<ns0:customerDestination>
<ns0:Account>
<xsl:value-of select="ns0:customerDestination/ns0:Account" />
</ns0:Account>
<ns0:AccountInfoDestination>
<xsl:value-of select="ns0:customerDestination/ns0:AccountInfoSource/text()" />
</ns0:AccountInfoDestination>
<ns0:Employed>
<xsl:value-of select="ns0:customerDestination/ns0:Employed" />
</ns0:Employed>
</ns0:customerDestination>
输出应该是这样的:
<ns0:customerDestination>
<ns0:Account>123</ns0:Account>
<ns0:AccountInfoDestination>
<ns0:AccountLocaiton>Florida-MI</ns0:AccountLocaiton>
<ns0:AccountZip>12341</ns0:AccountZip>
<ns0:AccountBank>BOA</ns0:AccountBank>
<ns0:AccountBalance>0.0001</ns0:AccountBalance>
<ns0:AccountStatus>Active</ns0:AccountStatus>
.
.
.
.
.
</ns0:AccountInfoDestination>
<ns0:Employed>Yes</ns0:Employed>
</ns0:customerDestination>
你用xslt-1.0
和xslt-2.0
标记你的问题,这是没有意义的,因为这些标记是相互排斥的。下面的解决方案适用于两个版本的XSLT,因为XSLT 2.0处理器也可以处理XSLT 1.0文档。
最重要的模板:
<xsl:template match="AccountInfoSource/* | Account | Employed">
匹配AccountInfoSource
、Account
和Employed
元素的所有子元素节点。然后,它构造以ns0:
:
<xsl:element name="{concat('ns0:',local-name())}">
然后将这些元素的文本内容原样复制到输出树中。
样式表<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ns0="http://www.namespace.com">
<xsl:strip-space elements="*"/>
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes" encoding="UTF-8"/>
<xsl:template match="/customerSource">
<ns0:customerDestination>
<xsl:apply-templates/>
</ns0:customerDestination>
</xsl:template>
<xsl:template match="Name"/>
<xsl:template match="AccountInfoSource">
<ns0:AccountInfoDestination>
<xsl:apply-templates/>
</ns0:AccountInfoDestination>
</xsl:template>
<xsl:template match="AccountInfoSource/* | Account | Employed">
<xsl:element name="{concat('ns0:',local-name())}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:transform>
XML输出
注意:您显示的预期输出不是格式良好的,因为有ns0:
前缀,但没有定义名称空间。
<ns0:customerDestination xmlns:ns0="http://www.namespace.com">
<ns0:Account>123</ns0:Account>
<ns0:AccountInfoDestination>
<ns0:AccountLocaiton>Florida-MI</ns0:AccountLocaiton>
<ns0:AccountZip>12341</ns0:AccountZip>
<ns0:AccountBank>BOA</ns0:AccountBank>
<ns0:AccountBalance>0.0001</ns0:AccountBalance>
<ns0:AccountStatus>Active</ns0:AccountStatus>
</ns0:AccountInfoDestination>
<ns0:Employed>Yes</ns0:Employed>
</ns0:customerDestination>