1

我在处理以下 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:schemas-microsoft-com:office:office、urn:schemas-microsoft-com:office:excel 和 urn:schemas-microsoft-com:office:spreadsheet 命名空间它)

问题是我不知道如何在行/列/值上应用来自标题/标题元素 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 元素中,该元素包含有关列及其标题的所有信息。列在单独的模板中处理,它们不直接连接到头部元素的列定义。仅通过元素的顺序来维护关系。我需要处理每一行和每个单元格(对于正确的列)的数据类型和可能的数据格式(这是可选的)信息,而不仅仅是标题。

4

1 回答 1

1

您可以使用键按位置查找标题元素

<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>
于 2012-07-13T22:52:23.897 回答