InputXML:
<json:object xmlns:json="http://www.ibm.com/xmlns/prod/2009/jsonx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<json:object name="Customers">
<json:array name="Order">
<json:object>
<json:string name="Name">john</json:string>
<json:string name="Password">Doe</json:string>
</json:object>
<json:object>
<json:string name="Name">Adam</json:string>
<json:string name="Password">eve</json:string>
</json:object>
</json:array>
</json:object>
</json:object>
XSLT:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xmlns:tns="http://some-other-namespace" xmlns:json="http://www.ibm.com/xmlns/prod/2009/jsonx" exclude-result-prefixes="json">
<xsl:template match="/json:object">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="json:array[@name]">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="json:object[@name]">
<xsl:element name="{@name}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="json:object">
<xsl:element name="{../@name}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="json:string[@name]">
<xsl:element name="{@name}">
<xsl:value-of select="."/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
实际输出:
<Customers>
<Order>
<Name>john</Name>
<Password>Doe</Password>
</Order>
<Order>
<Name>Adam</Name>
<Password>eve</Password>
</Order>
</Customers>
所需输出:
<Customers xmlns:tns="http://some-other-namespace">
<Order>
<Name>john</Name>
<Password>Doe</Password>
</Order>
<Order>
<Name>Adam</Name>
<Password>eve</Password>
</Order>
</Customers>
我知道我们可以在另一个xsl中通过传递Actual输出作为其输入来进行身份转换,并获得我的Desired output。
但是我想在一个样式表中完成所有的工作。如何使用单个xsl 实现这一点
如果您真的想生成一个没有在任何元素或属性名称中实际使用、也没有出现在源文档中的命名空间声明,可以使用xsl:namespace
指令(一个相当专门的指令,仅用于此模糊目的)。