如何应用XSL模板从文档的不同部分开始和完成XML元素

时间:2015-07-27 08:56:25

标签: xml xslt

我试图弄清楚如何创建一个HTML文档,有时XML源中的一组元素被包裹起来。在一个自举面板中。

XML描述了垂直表单布局。所以你有一组包含单个字段的行。如果有PANELSTART字段,我想在屏幕上启动Panel,继续写出内容,然后当我点击PANELEND字段时,我想用匹配的</div>关闭面板。但是XSL不允许这样做,因为所有元素都需要匹配的结束元素 我试过了

<xsl:text>

但这似乎也不起作用。我有一个例子来说明。

源XML:

<?xml version="1.0"?>
<rows>
    <row><field type="B><plainValue>B0</plainValue></field></row>
    <row><field type="PANELSTART"></field></row>
    <row><field type="B"><plainValue>B1</plainValue></field></row>
    <row><field type="PANELEND"/></row>
    <row><field type="C"><plainValue>C0</plainValue></field></row>
    <row><field type="D"><plainValue>D0</plainValue></field></row>
    <row><field type="B"><plainValue>B2</plainValue></field></row>
</rows>

XSLT:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" />
 <xsl:template match="field[@type='PANELSTART']">
    <div class='panel'>panel header</div>
        <div class='panel-body'>
 </xsl:template>
 <xsl:template match="field[@type='B']">
     <p>content goes here</p>
 </xsl:template>
 <xsl:template match="field[@type='PANELEND']">
     </div>
 </xsl:template>
</xsl:stylesheet>

预期结果:

    <p>B0</p>
    <div class="panel">panel header</div>
    <div class="panel-body">
       <p>B1</p>
    </div>
    <p>C0</p>
    <p>D0</p>
    <p>B2</p>    

我很感激你对如何做到这一点的想法。不幸的是,我无法改变XML的结构。

3 个答案:

答案 0 :(得分:1)

使用XSLT 1.0,你可以使用&#34;兄弟递归&#34;:

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

    <xsl:output method="html" indent="yes" version="5.0"/>

    <xsl:template match="rows">
        <div>
            <xsl:apply-templates select="row[1]"/>
        </div>
    </xsl:template>

    <xsl:template match="row[field[@type = 'PANELSTART']]">
        <div class="panel">panel header</div>
        <div class="panel-body">
            <xsl:apply-templates select="following-sibling::*[1]"/>
        </div>
        <xsl:apply-templates select="following-sibling::row[field[@type = 'PANELEND']][1]/following-sibling::*[1]"/>
    </xsl:template>

    <xsl:template match="row">
        <p>
            <xsl:apply-templates/>
        </p>
        <xsl:apply-templates select="following-sibling::*[1][not(self::row[field[@type = 'PANELEND']])]"/>
    </xsl:template>

</xsl:transform>

http://xsltransform.net/bdxtqY/2在线。

答案 1 :(得分:1)

如果您能够使用XSLT 2.0,则可能会将xsl:for-each-group及其group-starting-with属性

与我们联系起来
 <xsl:for-each-group select="row/field" group-starting-with="field[@type='PANELSTART']">

因此,每个字段的类型属性为&#34; PANELSTART&#34;形成每个小组的开始。

试试这个XSLT

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
    <xsl:output method="html" encoding="UTF-8" indent="yes" />

    <xsl:template match="rows">
        <xsl:for-each-group select="row/field" group-starting-with="field[@type='PANELSTART']">
        <div class='panel'>panel header</div>
            <div class='panel-body'>
                <xsl:apply-templates select="current-group()" />                
            </div>
        </xsl:for-each-group>
    </xsl:template>

    <xsl:template match="field[@type='B']">
        <p>content goes here</p>
    </xsl:template>

    <xsl:template match="field[@type='PANELEND']" />
</xsl:stylesheet>

你可能会放弃模板匹配&#34; PANELEND&#34;虽然。

http://www.xml.com/pub/a/2003/11/05/tr.html

上阅读xsl:for-each-group

答案 2 :(得分:0)

此XSLT忽略所有PANELSTARTPANELEND行(实际上所有内容都不是B - 但如有必要,可以重新组织它以忽略 {{ 1}}和PANELSTART)。它不会超过PANELEND,而是超过fields。这意味着整个rows集合被视为单个实体,因此您可以在其周围插入field/type B

它会在多次出现div的情况下正常工作(每个{@ 1}}会自己获得rows,并且在没有&#时会忽略整个div集合34; B&#34;在它。

fields