我在处理以下xml代码时遇到问题:
<?xml version="1.0" encoding="UTF-8"?>
<searchresult>
<head>
<heading>
<title>Column1</title>
<dataType>TEXT</dataType>
</heading>
<heading>
<title>Column2</title>
<dataType>DATE</dataType>
<dataFormat>SHORT_DATE</dataFormat>
</heading>
</head>
<data>
<row>
<column>
<value>Hello</value>
<column>
<column>
<value>2012-07-12</value>
<column>
</row>
<row>
<column>
<value>Good bye</value>
<column>
<column>
<value>2012-07-13</value>
<column>
</row>
</data>
</searchresult>
我需要将这个xml转换为EXCEL兼容文件(我使用urn:schemasmicrosoft.com:office:office、urn:schemas microsoft.com:office:EXCEL和urn:schema-microsoft.com:office:电子表格名称空间)
问题是,我不知道如何将头/标题元素dataType+dataFormat(如果可用)中的信息应用于行/列/值。这将帮助Excel识别单元格中的数据类型。很明显,我需要保持顺序。列数及其元数据是动态的,每个XML可能不同。
我需要这样的东西:
<?xml version="1.0" encoding="ISO-8859-1"?>
<Workbook --several namespaces here-->
<Worksheet ss:Name="SearchResult">
<Table x:FullRows="1" x:FullColumns="1">
<Row ss:Height="12.75">
<Cell>
<Data ss:Type="String">Column1</Data>
</Cell>
<Cell>
<Data ss:Type="String">Column2</Data>
</Cell>
</Row>
<Row ss:Height="12.75">
<Cell>
<Data ss:Type="String">Hello : TEXT</Data>
</Cell>
<Cell>
<Data ss:Type="Date">2012-07-12 : DATE - SHORT_DATE</Data>
</Cell>
</Row>
<Row ss:Height="12.75">
<Cell>
<Data ss:Type="String">Good bye : TEXT</Data>
</Cell>
<Cell>
<Data ss:Type="Date">2012-07-12 : DATE - SHORT_DATE</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
我试过几次创造一些有用且有效的东西,但所有的尝试都失败了。当前版本在这里:
<xsl:template match="searchresult">
<Worksheet>
--some unimportant script--
<Table x:FullColumns="1" x:FullRows="1">
<xsl:apply-templates select="head" />
<xsl:apply-templates select="elements/row"/>
</Table>
</Worksheet>
</xsl:template>
<xsl:template match="head">
<Row>
<xsl:for-each select="*">
<!-- resolve data-type and remember it as variable -->
<xsl:variable name="concat('dataType', position())" select="dataType">
<xsl:choose>
<xsl:when test="TEXT">
<xsl:value-of select=".">String</xsl:value-of>
</xsl:when>
<xsl:when test="DATE">
<xsl:value-of select=".">DateTime</xsl:value-of>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:variable name="concat('dataFormat', position())" select="dataFormatter" >
<!-- create style IDs for different formats -->
</xsl:variable>
<Cell>
<Data ss:Type="String">
<xsl:value-of select="title/." />
</Data>
</Cell>
</xsl:for-each>
</Row>
</xsl:template>
<xsl:template match="elements/row/column">
<xsl:for-each select="values">
<Cell>
<!-- resolve order within loop and pick correct data-type variable -->
<xsl:variable name="type" select="concat('$dataType', position())" />
<xsl:variable name="format" select="concat('$dataFormat', position())" />
<Data ss:Type="$type">
<xsl:value-of select="concat(normalize-space(.),' : ', $type)"/>
<!-- check if data format is set -->
<xsl:if test="//TODO">
<xsl:value-of select="concat(' - ', $format)" />
</xsl:if>
</Data>
</Cell>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
这个版本是无用的,因为我不能使用任何变量值作为变量的名称,它必须是常数值。解析整个数据在某种程度上是可行的,但当我试图实现数据类型和数据格式时,它就坏了。
编辑:有关数据类型和数据格式的信息位于head元素中,该元素包含有关列及其标题的所有信息。列在单独的模板中处理,并且它们不直接连接到head元素中的列定义。关系仅通过元素的顺序来维护。我需要处理每一行和每一单元格(对于适当的列)的数据类型和可能的数据格式(这是可选的)信息,而不仅仅是标题。
您可以使用键按标题元素的位置查找它们
<xsl:key name="headings" match="heading" use="count(preceding-sibling::heading)" />
然后,假设您位于列元素上,您将根据位置获得相关的数据类型,就像一样
<xsl:variable
name="dataType"
select="key('headings', count(preceding-sibling::column))/dataType" />
即,对于行中的第一个列元素,您将查找第一个标题元件,并获取数据类型。
关于XSLT,还需要注意其他一些事情。首先,不允许使用动态变量名称,如以下
<xsl:variable name="concat('dataType', position())" select="dataType">
如果使用select属性,也不允许在变量中包含非空内容。
其次,如果要在输出属性中使用变量值,则需要使用"属性值模板"。与其这样做。。。
<Data ss:Type="$type">
你会做这个
<Data ss:Type="{$type}">
此外,您应该支持xsl:apply-templates而不是xsl:for-each,因为它们鼓励代码重用,减少嵌套代码,并且更符合XSLT的精神。
无论如何,这里是完整的XSLT(注意使用虚构的名称空间)
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:x="x" xmlns:ss="ss">
<xsl:output method="xml" indent="yes"/>
<xsl:key name="headings" match="heading" use="count(preceding-sibling::heading)"/>
<xsl:template match="searchresult">
<Worksheet>
<Table x:FullColumns="1" x:FullRows="1">
<xsl:apply-templates select="head"/>
<xsl:apply-templates select="data/row"/>
</Table></Worksheet>
</xsl:template>
<xsl:template match="head">
<Row>
<xsl:apply-templates select="heading"/>
</Row>
</xsl:template>
<xsl:template match="heading">
<Cell>
<Data ss:Type="String">
<xsl:value-of select="title"/>
</Data>
</Cell>
</xsl:template>
<xsl:template match="row">
<row>
<xsl:apply-templates select="column"/>
</row>
</xsl:template>
<xsl:template match="column">
<Cell>
<xsl:variable name="dataType" select="key('headings', count(preceding-sibling::column))/dataType"/>
<xsl:variable name="type">
<xsl:choose>
<xsl:when test="$dataType = 'TEXT'">
<xsl:text>String</xsl:text>
</xsl:when>
<xsl:when test="$dataType = 'DATE'">
<xsl:text>Date</xsl:text>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:variable name="dataFormat" select="key('headings', count(preceding-sibling::column))/dataFormat"/>
<Data ss:Type="{$type}">
<xsl:value-of select="concat(normalize-space(.),' : ', $type)"/>
<xsl:if test="$dataFormat">
<xsl:value-of select="concat(' - ', $dataFormat)"/>
</xsl:if>
</Data>
</Cell>
</xsl:template>
</xsl:stylesheet>
当应用于示例XML时,以下是输出
<Worksheet xmlns:x="x" xmlns:ss="ss">
<Table x:FullColumns="1" x:FullRows="1">
<Row>
<Cell>
<Data ss:Type="String">Column1</Data>
</Cell>
<Cell>
<Data ss:Type="String">Column2</Data>
</Cell>
</Row>
<row>
<Cell>
<Data ss:Type="String">Hello : String</Data>
</Cell>
<Cell>
<Data ss:Type="Date">2012-07-12 : Date - SHORT_DATE</Data>
</Cell>
</row>
<row>
<Cell>
<Data ss:Type="String">Good bye : String</Data>
</Cell>
<Cell>
<Data ss:Type="Date">2012-07-13 : Date - SHORT_DATE</Data>
</Cell>
</row>
</Table>
</Worksheet>