使用 XSLT 展平 XML 树 - 可选但重复的节点
Flatten XML tree using XSLT - optional but repeating nodes
我目前正在尝试将 xml 结构展平以显示在简单的 table 中。
基本问题是,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 样式表,中间结果将映射到一个简单的 row/column 输出。
因此每个结果都需要在其自己的行中。
感谢任何帮助!
This produces the desired result, but to me, this looks rather ugly.
好吧,这是一个丑陋的问题。结果真的有用吗?我原以为每个级别都有一个单独的 table(因此有一个单独的样式表)会更实用。
不过,如果这是你想要的结果,你可以尝试更优雅的方式来产生它:
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>
我目前正在尝试将 xml 结构展平以显示在简单的 table 中。 基本问题是,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 样式表,中间结果将映射到一个简单的 row/column 输出。 因此每个结果都需要在其自己的行中。
感谢任何帮助!
This produces the desired result, but to me, this looks rather ugly.
好吧,这是一个丑陋的问题。结果真的有用吗?我原以为每个级别都有一个单独的 table(因此有一个单独的样式表)会更实用。
不过,如果这是你想要的结果,你可以尝试更优雅的方式来产生它:
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>