-1

首先,我是 XSLT 的新手。我正在使用 Sharepoint 列表,如果特定季度有数据,我需要获取链接以显示。如果某个季度没有数据,我需要有一个这样的标签。

所以我所做的是我为给定年份的同一月份的每个数据创建了一个 foreach 循环。我知道我无法在 xslt 中重新分配一个变量,但我不知道如何做我想做的事。这是我的代码示例。由于我正在使用 Sharepoint,因此我无法访问 XML。:/

<xsl:variable name="DataQ1" select="'False'"/>
<xsl:variable name="DataQ2" select="'False'"/>
<xsl:variable name="DataQ3" select="'False'"/>
<xsl:variable name="DataQ4" select="'False'"/>
<xsl:for-each select="../Row[generate-id()=generate-id(key('MonthKey', substring(@Date,6,7))[substring('@Date',1,4) = $varYear)][1])]">
    <xsl:variable name="currentMonth" select="number(substring(@Date,6,7))"/>
    <xsl:choose>
        <xsl:when test="$currentMonth &gt;= 1 and $currentMonth $lt;=4">
            <!--set $DataQ1 to true-->
        </xsl:when>
        <xsl:when test="$currentMonth &gt;= 4 and $currentMonth $lt;=7">
            <!--set $DataQ2 to true-->
        </xsl:when>
        <xsl:when test="$currentMonth &gt;= 7 and $currentMonth $lt;=10">
            <!--set $DataQ3 to true-->
        </xsl:when>
        <xsl:otherwise>
            <!--set $DataQ4 to true-->
        </xsl:otherwise>
    </xsl:choose>
</xsl:for-each>
<div>
    <xsl:choose>
        <xsl:when test="$DataQ1= 'True'">
            <a>
                <xsl:attribute name="href">
                    <xsl:value-of select="www.example.come"/>
                </xsl:attribute>
                <xsl:value-of select="'LinkToDataofQ1'"/>
            </a>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="'There's no data for this quarter.'"/>
        </xsl:otherwise>
    </xsl:choose>   
</div>
4

1 回答 1

1

您在示例代码中使用了该key函数,但没有发布密钥声明。但我认为您可以使用以下代码实现您想要的:

<div>
    <xsl:choose>
        <xsl:when test="../Row[substring(@Date, 1, 4) = $varYear and substring(@Date, 6, 2) &gt;= 1 and substring(@Date, 6, 2) &lt; 4]">
            <a href="http://www.example.com/">LinkToDataofQ1</a>
        </xsl:when>
        <xsl:otherwise>There's no data for this quarter.</xsl:otherwise>
    </xsl:choose>   
</div>

其他一些注意事项:

  • 在 Q1 的测试中,您写了$currentMonth <= 4. 我想你想要的是$currentMonth < 4
  • @Date您使用的月份中提取月份substring(@Date, 6, 7)。第三个参数substring是子字符串的长度,而不是结束索引。所以你可能应该写substring(@Date, 6, 2).
  • 而不是<xsl:value-of select="'string'"/>,你可以简单地写string
于 2013-03-26T20:47:04.667 回答