我目前正在尝试压缩xml结构以显示在一个简单的表中。 基本问题是,xml包含不同级别的重复节点 - 提取的节点的每个组合应该产生一个单独的输出节点。
xml文档如下所示:
<customer>
<name>Mustermann</name>
<contract>
<contract_id>C1</contract_id>
<products>
<product>
<name>Product C1.P1</name>
<price>23.12</price>
<properties>
<property>Property C1.P1.A</property>
<property>Property C1.P1.B</property>
</properties>
</product>
<product>
<name>Product C1.P2</name>
<price>2.32</price>
</product>
</products>
</contract>
<contract>
<contract_id>C2</contract_id>
<products>
<product>
<name>Product C2.P1</name>
<price>143.33</price>
</product>
<product>
<name>Product C2.P2</name>
<price>231.76</price>
<properties>
<property>Property C2.P2.A</property>
<property>Property C2.P2.B</property>
</properties>
</product>
</products>
</contract>
<contract>
<contract_id>C3</contract_id>
</contract>
</customer>
因此合同不需要产品,产品不需要具有属性。
结果应该使重复节点变平并为每组提取的节点形成一个单独的结果节点(这当然会在结果中引入一些冗余)。
输出应如下所示:
<output>
<data>
<customer_name>Mustermann</customer_name>
<contract_id>C1</contract_id>
<product_name>Product C1.P1</product_name>
<product_price>23.12</product_price>
<product_property>Property C1.P1.A</product_property>
</data>
<data>
<customer_name>Mustermann</customer_name>
<contract_id>C1</contract_id>
<product_name>Product C1.P1</product_name>
<product_price>23.12</product_price>
<product_property>Property C1.P1.B</product_property>
</data>
<data>
<customer_name>Mustermann</customer_name>
<contract_id>C1</contract_id>
<product_name>Product C1.P2</product_name>
<product_price>2.32</product_price>
<product_property/>
</data>
<data>
<customer_name>Mustermann</customer_name>
<contract_id>C2</contract_id>
<product_name>Product C2.P1</product_name>
<product_price>143.33</product_price>
<product_property/>
</data>
<data>
<customer_name>Mustermann</customer_name>
<contract_id>C2</contract_id>
<product_name>Product C2.P2</product_name>
<product_price>231.76</product_price>
<product_property>Property C2.P2.A</product_property>
</data>
<data>
<customer_name>Mustermann</customer_name>
<contract_id>C2</contract_id>
<product_name>Product C2.P2</product_name>
<product_price>231.76</product_price>
<product_property>Property C2.P2.B</product_property>
</data>
<data>
<customer_name>Mustermann</customer_name>
<contract_id>C3</contract_id>
<product_name/>
<product_price/>
<product_property/>
</data>
</output>
我尝试了以下xslt样式表:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/customer">
<output>
<xsl:for-each select="contract">
<xsl:choose>
<xsl:when test="products/product">
<xsl:for-each select="products/product">
<xsl:choose>
<xsl:when test="properties/property">
<xsl:for-each select="properties/property">
<xsl:call-template name="data">
<xsl:with-param name="customer_name" select="/customer/name"/>
<xsl:with-param name="contract_id" select="../../../../contract_id"/>
<xsl:with-param name="product_name" select="../../name"/>
<xsl:with-param name="product_price" select="../../price"/>
<xsl:with-param name="property" select="."/>
</xsl:call-template>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="data">
<xsl:with-param name="customer_name" select="/customer/name"/>
<xsl:with-param name="contract_id" select="../../contract_id"/>
<xsl:with-param name="product_name" select="name"/>
<xsl:with-param name="product_price" select="price"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="data">
<xsl:with-param name="customer_name" select="/customer/name"/>
<xsl:with-param name="contract_id" select="contract_id"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</output>
</xsl:template>
<xsl:template name="data">
<xsl:param name="customer_name"/>
<xsl:param name="contract_id"/>
<xsl:param name="product_name"/>
<xsl:param name="product_price"/>
<xsl:param name="property"/>
<data>
<customer_name><xsl:value-of select="$customer_name"/></customer_name>
<contract_id><xsl:value-of select="$contract_id"/></contract_id>
<product_name><xsl:value-of select="$product_name"/></product_name>
<product_price><xsl:value-of select="$product_price"/></product_price>
<product_property><xsl:value-of select="$property"/></product_property>
</data>
</xsl:template>
</xsl:stylesheet>
这会产生预期的结果,但对我来说,这看起来相当丑陋。 只是做一个嵌套循环(循环合约,循环产品内部等等)的天真方法不起作用,因为它没有接收所有输出节点(例如没有产品的合同被忽略)。
背景:我想在oracle xmltable查询中使用xslt样式表,中间结果将映射到简单的行/列输出。 因此,每个结果都需要在自己的行中。
感谢任何帮助!
答案 0 :(得分:1)
这会产生预期的结果,但对我来说,这看起来相当丑陋。
嗯,这是一个丑陋的问题。结果对任何事情都有用吗?我原本认为每个级别的单独表格(因此是一个单独的样式表)会更实用。
尽管如此,如果这是您想要的结果,您可以尝试更优雅的方式来制作它:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/customer">
<output>
<xsl:apply-templates/>
</output>
</xsl:template>
<xsl:template match="contract[not(products)] | product[not(properties)] | property">
<data>
<customer_name><xsl:value-of select="ancestor::customer/name"/></customer_name>
<contract_id><xsl:value-of select="ancestor-or-self::contract/contract_id"/></contract_id>
<product_name><xsl:value-of select="ancestor-or-self::product/name"/></product_name>
<product_price><xsl:value-of select="ancestor-or-self::product/price"/></product_price>
<product_property><xsl:value-of select="self::property"/></product_property>
</data>
</xsl:template>
<xsl:template match="text()"/>
</xsl:stylesheet>