我有这个xml
<Request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<UserInfo xmlns="">
<name>ss</name>
<addr>XXXXXX</addr>
</UserInfo>
</Request>
我希望输出xml为
<Request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<UserInfo>
<name>ss</name>
<addr>XXXXXX</addr>
</UserInfo>
</Request>
请帮我xsl ..
答案 0 :(得分:2)
您的输入和输出在语义上是相同的,但如果您想删除xmlns=""
,这将有效:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*/*">
<xsl:element name="{name()}" namespace="{namespace-uri()}">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
在样本输入上运行时,结果为:
<Request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<UserInfo>
<name>ss</name>
<addr>XXXXXX</addr>
</UserInfo>
</Request>