XSLT for-each和参数in属性的循环

时间:2013-01-02 11:47:13

标签: xml xslt xslt-1.0

我有这个XML

<root>
    <subscribers nullDays="5">
        <subscriber>
            <ThumbURL>
                http://cs323321.userapi.com/v323321550/eea/iakdB20fx20.jpg
            </ThumbURL>
        </subscriber>
        <subscriber>
            <ThumbURL>
                http://cs323321.userapi.com/v323321550/f24/CQ-Zm0_BWnQ.jpg
            </ThumbURL>
        </subscriber>
        ...
        <subscriber>
            <ThumbURL>...</ThumbURL>
        </subscriber>
    </subscribers>
</root>

在XSLT之后,我获得了HTML,其中订阅者将被分隔为每个 div ,其中包含 img 标记。

问题

如何使用 xsl:for-each 生成 div 等于 nullDays 属性?以下代码要求订阅者节点多于 nullDays ,但它不能存在:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">    
<xsl:output encoding="UTF-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"xml:base="http://www.w3.org/1999/xhtml" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" indent="yes"/>

<xsl:template match="root">
    <xsl:element name="html">
        <xsl:element name="head"/>
        <xsl:element name="body">

            <xsl:variable name="nullDays" select="subscribers/@nullDays"/>                

            <xsl:for-each select="subscribers/subscriber">
                <xsl:if test="(position() mod $nullDays) = 0">
                    <xsl:element name="div">
                        <xsl:attribute name="class">empty-div</xsl:attribute>
                    </xsl:element>
                </xsl:if>
            </xsl:for-each>
        </xsl:element>
    </xsl:element>        
</xsl:template>
</xsl:stylesheet>

谢谢!

1 个答案:

答案 0 :(得分:1)

此XSLT 1.0转换:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="subscribers">
     <html>
       <xsl:apply-templates select="subscriber"/>
       <xsl:call-template name="genEmpty">
         <xsl:with-param name="pTimes" select="@nullDays - count(subscriber)"/>
       </xsl:call-template>
     </html>
 </xsl:template>

 <xsl:template match="subscriber">
   <div><img src="{normalize-space(ThumbURL)}"/></div>
 </xsl:template>

 <xsl:template name="genEmpty">
  <xsl:param name="pTimes" select="0"/>

  <xsl:if test="$pTimes >= 0">
    <div class="empty-div"/>
    <xsl:call-template name="genEmpty">
     <xsl:with-param name="pTimes" select="$pTimes -1"/>
    </xsl:call-template>
  </xsl:if>
 </xsl:template>
</xsl:stylesheet>

应用于提供的XML文档时:

<root>
    <subscribers nullDays="5">
        <subscriber>
            <ThumbURL>
                http://cs323321.userapi.com/v323321550/eea/iakdB20fx20.jpg
            </ThumbURL>
        </subscriber>
        <subscriber>
            <ThumbURL>
                http://cs323321.userapi.com/v323321550/f24/CQ-Zm0_BWnQ.jpg
            </ThumbURL>
        </subscriber>
        ...
        <subscriber>
            <ThumbURL>...</ThumbURL>
        </subscriber>
    </subscribers>
</root>

产生(我猜的是)想要的结果:

<html>
   <div><img src="http://cs323321.userapi.com/v323321550/eea/iakdB20fx20.jpg"></div>
   <div><img src="http://cs323321.userapi.com/v323321550/f24/CQ-Zm0_BWnQ.jpg"></div>
   <div><img src="..."></div>
   <div class="empty-div"></div>
   <div class="empty-div"></div>
   <div class="empty-div"></div>
</html>