1

I have this kind of xml

<?xml version="1.0"?>
<Data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Rows>
<Row>
  <Id>1</Id>
  <XColumns>
    <Name>Country</Name>
    <Value>Austria</Value>
  </XColumns>
  <XColumns>
    <Name>Region</Name>
    <Value>Europe</Value>
  </XColumns>
  <XColumns>
    <Name>Sector</Name>
    <Value>Information Technology</Value>
  </XColumns>
  <YColumns>
    <Name>Dataset 1</Name>
    <Value>14</Value>
  </YColumns>
  <YColumns>
    <Name>Dataset 2</Name>
    <Value>19</Value>
  </YColumns>
</Row>
<Row>
  <Id>2</Id>
  <XColumns>
    <Name>Country</Name>
    <Value>Bahamas</Value>
  </XColumns>
  <XColumns>
    <Name>Region</Name>
    <Value>North American</Value>
  </XColumns>
  <XColumns>
    <Name>Sector</Name>
    <Value>Information Technology</Value>
  </XColumns>
  <YColumns>
    <Name>Dataset 1</Name>
    <Value>1</Value>
  </YColumns>
  <YColumns>
    <Name>Dataset 2</Name>
    <Value>15</Value>
  </YColumns>
</Row>

I need to convert it to following XML using XSLT

<?xml version="1.0"?>
<data>
<categories>
 <category label="Austria"/>
 <category label="Bahamas"/>
</categories>
<dataset seriesName="DataSet 1">
 <set value="14"/>
 <set value="1"/>
</dataset>
<dataset seriesName="DataSet 2">
 <set value="19"/>
 <set value="15"/>
</dataset>

1 more thing, i have one variable called "category", if i pass category=Country so it will generate categories tag where label have value of country like Austria,Bahamas . if i pass category = region so it will generate categories tag where label have value of region like Europe, North American. So based upon category value i have to generate categories tag.

4

1 回答 1

2

以下代码执行您尝试实现的目标。然而,根据数据集的变化可能不是最有效的方法。

我假设 YColumns 可以以不同的顺序出现,并且我们可以在源文件中找到任意数量的数据集(不仅仅是 2 个)。如果可以消除其中一些限制,则解决方案可能会更简单。

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

    <xsl:output method="xml" indent="yes" />

    <!-- Holds the category to be selected -->
    <xsl:param name="category"
               select="'Country'" />

    <!-- Process root element -->
    <xsl:template match="Data">
        <data>
            <xsl:apply-templates select="*" />
        </data>
    </xsl:template>

    <xsl:template match="Rows">
        <!-- Generate category based on parameter $category -->
        <categories>
            <xsl:apply-templates select="Row/XColumns[Name = $category]" />
        </categories>
        <!-- Generate data sets -->
        <xsl:apply-templates select="Row[1]/YColumns" />
    </xsl:template> 

    <!-- Generate category element -->  
    <xsl:template match="XColumns">
        <category label="{Value}" />
    </xsl:template>

    <!-- Generate dataset elements -->
    <xsl:template match="YColumns">
        <xsl:variable name="name" select="Name" />
        <dataset seriesName="{$name}">
            <xsl:for-each select="../../Row/YColumns[Name = $name]/Value">
                <set value="{.}" />
            </xsl:for-each>
        </dataset>
    </xsl:template>

</xsl:stylesheet>

更新:更有效的方法是使用 <xsl:key> 来索引所有 YColumn 名称。所以你必须添加

<xsl:key name="data-set" match="YColumns/Value" use="../Name" />

作为 <xsl:stylesheet> 的直接子级

并将表达式更改为以下表达式

../../Row/YColumns[Name = $name]/Value

key('data-set', $name)
于 2013-02-19T12:53:35.593 回答