从XSL中的组合XML输出XML

时间:2012-11-25 16:11:31

标签: xml xslt xml-parsing xslt-1.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>

我赞成所有答案,提前谢谢你!

1 个答案:

答案 0 :(得分:0)

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