我有一个XML文件,必须使用XSLT进行转换,我正在向子树添加一个节点。 输入文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Context>
<ContextExtra>
<ns3:timestampList xmlns:ns3="http://www.mydomain.com/myAdapter/basicMessage/1.0"
xmlns:ns2="http://www.mydomain.com/myAdapter/tbMessage/1.0"
xmlns="http://www.mydomain.com/myAdapter/timestamp/1.0"
xmlns:ns10="http://www.mydomain.com/myAdapter/coMessage/1.0"
xmlns:ns11="http://www.mydomain.com/myAdapter/lolMessage/1.0"
xmlns:ns12="http://www.mydomain.com/myAdapter/tcMessage/1.0"
xmlns:ns13="http://www.mydomain.com/myAdapter/bMessage/1.0"
xmlns:ns4="http://www.mydomain.com/myAdapter/tiMessage/1.0"
xmlns:ns5="http://www.myDomain.com/myAdapter/oriMessage/1.0"
xmlns:ns6="http://www.myDomain.com/myAdapter/eiMessage/1.0"
xmlns:ns7="http://www.myDomain.com/myAdapter/fplscMessage/1.0"
xmlns:ns8="http://www.myDomain.com/myAdapter/psMessage/1.0"
xmlns:ns9="http://www.myDomain.com/myAdapter/stMessage/1.0">
<timestampInfo>
<timestampID>START</timestampID>
<timestamp>2012-02-25T00:30:18.705+01:00</timestamp>
<description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</timestampInfo>
<timestampInfo>
<timestampID>END</timestampID>
<timestamp>2012-02-25T00:30:23.675+01:00</timestamp>
<description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</timestampInfo>
</ns3:timestampList>
</ContextExtra>
</Context>
转换看起来像这样
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:output method="xml" indent="yes" />
<xsl:param name="newTimeStamp">
<timestampInfo>
<timestampID>
<xsl:text>TEST TEST</xsl:text>
</timestampID>
<timestamp>
<xsl:text>2012-02-25T00:30:23.654+01:00</xsl:text>
</timestamp>
<description>
<xsl:text>this is a test</xsl:text>
</description>
</timestampInfo>
</xsl:param>
<xsl:template match="//ts:timestampInfo[position()=last()]">
<xsl:call-template name="identity" />
<xsl:copy-of select="$newTimeStamp" />
</xsl:template>
<xsl:template match="node()|@*" name="identity">
<xsl:copy>
<xsl:apply-templates select="node()|@*" />
</xsl:copy>
</xsl:template>
,结果如下:
<?xml version="1.0" encoding="UTF-8"?>
<Envelope>
<Context>
<ContextExtra>
<ns3:timestampList xmlns="http://www.myDomain.com/myAdapter/timestamp/1.0" xmlns:ns3="http://www.myDomain.com/myAdapter/basicMessage/1.0">
<timestampInfo>
<timestampID>MTA_START</timestampID>
<timestamp>2012-02-25T00:30:18.705+01:00</timestamp>
<description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</timestampInfo>
<timestampInfo>
<timestampID>MTA_END</timestampID>
<timestamp>2012-02-25T00:30:23.675+01:00</timestamp>
<description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</timestampInfo>
<timestampInfo xmlns="">
<timestampID>TEST TEST</timestampID>
<timestamp>2012-02-25T00:30:23.654+01:00</timestamp>
<description>This is a test</description>
</timestampInfo>
</ns3:timestampList>
</ContextExtra>
</Context>
正如您所看到的,timestampInfo
个节点具有属性xmlns=""
。也就是说,它是一个空命名空间。而不是<timestampInfo xmlns="">
我希望拥有<timestampInfo>
形式的节点。输入文件具有此格式,我无法控制它。
我怎么能做到这一点?
提前致谢
答案 0 :(得分:0)
指定要添加的timestampInfo
的命名空间:
<xsl:param name="newTimeStamp">
<timestampInfo xmlns="http://www.myDomain.com/myAdapter/timestamp/1.0">
<timestampID>
<xsl:text>TEST TEST</xsl:text>
</timestampID>
<timestamp>
<xsl:text>2012-02-25T00:30:23.654+01:00</xsl:text>
</timestamp>
<description>
<xsl:text>this is a test</xsl:text>
</description>
</timestampInfo>
</xsl:param>
答案 1 :(得分:0)
请记住,名称空间声明仅存在于序列化输出中。在转换生成的结果树中,重要的不是存在什么名称空间声明(因为它们不存在),而是每个元素的名称是什么?转换的问题是timestampInfo元素具有错误的名称 - 更具体地说,它们具有正确的本地名称,但是名称空间错误。获取正确的元素名称,序列化程序将负责生成名称空间声明。当然,当您使用文字结果元素时,结果树中元素的名称与样式表中的元素名称(名称空间和全部)相同。