gpt4 book ai didi

xml - 使用 XSLT 转换 XML

转载 作者:数据小太阳 更新时间:2023-10-29 02:07:29 26 4
gpt4 key购买 nike

以这种格式使用 XML:

<?xml version="1.0"?>
<GetResult version="1.0">
<Fetch>
<StartTime>2004-08-01 00:00:00</StartTime>
<EndTime>2004-08-01 00:00:00</EndTime>
</Fetch>
<Items>
<Item>
<Name>Item Name Number 1</Name>
<Data>
<Datum>
<Timestamp>2004-07-31 16:00:00+00:00</Timestamp>
<Value><![CDATA[25]]></Value>
</Datum>
<Datum>
<Timestamp>2004-07-31 18:00:00+00:00</Timestamp>
<Value><![CDATA[35]]></Value>
</Datum>
</Data>
</Item>
<Item>
<Name>Item Number 2</Name>
<Data>
<Datum>
<Timestamp>2004-07-31 16:00:00+00:00</Timestamp>
<Value><![CDATA[45]]></Value>
</Datum>
<Datum>
<Timestamp>2004-07-31 17:00:00+00:00</Timestamp>
<Value><![CDATA[55]]></Value>
</Datum>
<Datum>
<Timestamp>2004-07-31 18:00:00+00:00</Timestamp>
<Value><![CDATA[65]]></Value>
</Datum>
</Data>
</Item>
</Items>
</GetResult>

我希望能够使用 XSLT 生成这样的表格:

<table>
<tr>
<th>Timestamp</th>
<th>Item Name Number 1</th>
<th>Item Number 2</th>
</tr>
<tr>
<td>2004-07-31 16:00:00+00:00</td>
<td>25</td>
<td>45</td>
</tr>
<tr>
<td>2004-07-31 17:00:00+00:00</td>
<td></td>
<td>55</td>
</tr>
<tr>
<td>2004-07-31 18:00:00+00:00</td>
<td>35</td>
<td>65</td>
</tr>
</table>

无论返回多少项目以及每个项目下有多少基准,这都必须有效。我已经阅读了一些其他类似的答案,但没有任何运气。我对 XSLT 还很陌生,它让我抓狂。对此的解决方案将不胜感激。

最佳答案

这里有一个方法使用了相当可怕的 Muenchian Grouping 方法,如果您查看 StackOverflow 中的其他 XSLT 问题,您可能会看到它被提及,因此值得了解。在这种情况下,Muenchian Grouping 将用于循环遍历 distict Timestamp 元素。

首先,您定义一个键来查找时间戳元素

<xsl:key name="Timestamps" match="Timestamp" use="."/>

因此,如果您使用它来查找 '2004-07-31 16:00:00+00:00' 的键,它将包含两个时间戳元素,但是 '2004-07-31 17:00 :00+00:00' 将只包含一个。

要遍历不同的 Timestamp 元素,您首先要遍历所有 Timestamp 元素,就像这样

<xsl:for-each select="//Timestamp">

但是您随后需要一个 XSL:IF 条件来检查 Timestamp 元素是否是该值的第一次出现。这是通过使用 key 来完成的。如果该元素恰好在键列表中排在第一位,则可以对其进行处理。

<xsl:if test="generate-id(.) = generate-id(key('Timestamps',.)[1])">

generate-id 是当你想测试两个元素是否相同时使用的方法。把它放在一起给出:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:key name="Timestamps" match="Timestamp" use="."/>
<xsl:template match="/">
<table>
<tr>
<th>Timestamp</th>
<!-- Output the Item headers -->
<xsl:for-each select="//Item">
<th>
<xsl:value-of select="Name"/>
</th>
</xsl:for-each>
</tr>
<!-- Loop through all Timestamps -->
<xsl:for-each select="//Timestamp">
<xsl:sort select="."/>
<!-- Only process the element if it is the first occurence of this value -->
<xsl:if test="generate-id(.) = generate-id(key('Timestamps',.)[1])">
<xsl:variable name="Timestamp" select="."/>
<tr>
<td>
<xsl:value-of select="."/>
</td>
<xsl:for-each select="//Item">
<td>
<!-- Output the relevant Value for the Item -->
<xsl:value-of select="Data/Datum[Timestamp=$Timestamp][1]/Value"/>
</td>
</xsl:for-each>
</tr>
</xsl:if>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>

关于xml - 使用 XSLT 转换 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2019370/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com