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>
我知道我们可以通过传递Actual输出作为输入来获取另一个xsl中的身份变换并获得我想要的输出。
但我想在一个样式表中做所有事情。如何使用单个xsl
实现这一点答案 0 :(得分:0)
如果您确实要生成一个实际上未在任何元素或属性名称中使用的名称空间声明,并且未在源文档中出现,则可以使用xsl:namespace
指令(相当专业)只存在于这个模糊目的的指令。)