0

在弄清楚如何从导入两个 XML 并组合数据的 XSL 中输出干净的 XML 时,我遇到了一些巨大的问题。

我试图找到更多关于<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>我认为是我的解决方案的信息,但我不知道如何将所有这些信息放入一个可靠的 xml 文件中。当我从服务器脚本调用它时,它看起来不错,但它有一些HTML我不想要的标签和其他东西,我想这是因为它仍然是 XSL。

这是我的代码:

<?xml version="1.0" encoding="UTF-8" ?>  
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">

  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

  <xsl:param name="source-producenter" select="'Producers.xml'"/>
  <xsl:param name="source-positioner" select="'positioner.xml'"/>
  <xsl:variable name="producenter" select="document($source-producenter)"/>
  <xsl:variable name="Workbook" select="document($source-positioner)"/>

  <xsl:template match="/">
    <Producers>
      <xsl:for-each select="$producenter//producer">
        <producer>

          <id>
            <xsl:value-of select="id"/>
          </id>

          <name>
            <xsl:value-of select="name"/>
          </name>

          <address><xsl:value-of select="address"/></address>

          <postalcode>
            <xsl:value-of select="postalcode"/>
          </postalcode>

          <city>
            <xsl:value-of select="city"/>
          </city>

          <site>
            <xsl:value-of select="site"/>
          </site>

          <pic>
            <xsl:value-of select="img"/>
          </pic>
          <!--Store id from producent into storeId xsl variable -->
          <xsl:variable name="storedId" select="id"/>
          <!--Using filter to get correct Cells for latitude and longitude and checks if text() in number is equal to our storedId variable-->
          <xsl:variable name="selected"
            select="$Workbook//ss:Cell[@ss:Index='2']/ss:Data[@ss:Type='Number' and text() = $storedId]"/>
          <!--Gets the filtered values-->
          <latitude>
            <xsl:value-of select="$selected//../../ss:Cell[2]/ss:Data"/>
          </latitude>
          <longitude>
            <xsl:value-of select="$selected//../../ss:Cell[3]/ss:Data"/>
          </longitude>
        </producer>
      </xsl:for-each>
    </Producers>
  </xsl:template>
</xsl:stylesheet>

我感谢所有答案,在此先感谢您!

4

1 回答 1

0

如果您正在转换由 MSExcel 生成的 XML(线索是某些元素上的 ss: 前缀),那么请注意 Excel 使用 @ss:Index 属性的方式。连续的单元格忽略此属性,但要跳过空白的中间单元格,后续单元格有一个@ss:index。重建部分填充的细胞矩阵的几何形状是相当痛苦的。我不太明白这是否与您的挑战有关。

于 2012-11-26T00:05:38.783 回答