我需要通过XSLT从我的XML中选择随机项。 我有这样的XML:
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<item>
<title>Nr. 19/2015</title>
<link>http://ugeskriftet.dk/blad/9-2016</link>
<description>Link og billed til det sidste nye Ugeskrift for Læger</description>
<image>
<url>http://orlovka.org.ru/biblioznajka/images/stories/pic6/01.png</url>
</image>
</item>
<item>
<title>Nr. 9/2016</title>
<link>http://ugeskriftet.dk/blad/9-2016</link>
<description>Bald - who are they are?</description>
<image>
<url>http://www.moscowbooks.ru/image/book2/313/big/i313969.jpg</url>
</image>
</item>
<item>
<title>Nr. 3/2014</title>
<link>http://ugeskriftet.dk/blad/9-2016</link>
<description>How to tell your shildren</description>
<image>
<url>http://www.zipsites.ru/me/literatura/Yuliya_Doppenganger_Kak_obyasnit_rebyonku_chto_Vy_sobiraetes/cover.jpg</url>
</image>
</item>
</channel>
</rss>
我需要通过XSLT从这个文件中选择随机项。 我的XSLT看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sc="http://www.sitecore.net/sc"
xmlns:dot="http://www.sitecore.net/dot"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsh="http://www.matchwork.com/xsh"
exclude-result-prefixes="sc dot xsi xsh">
<!-- parameters -->
<xsl:param name="lang" select="'en'"/>
<xsl:param name="id" select="''"/>
<xsl:param name="sc_item"/>
<xsl:param name="sc_currentitem"/>
<xsl:param name="jobId" select="sc:qs('id')"/>
<xsl:output method="xml" indent="yes" encoding="utf-8" omit-xml-declaration="yes" />
<xsl:template match="/">
<div class="ReadingContainer">
<div class="LiTitle">
<xsl:call-template name="OutputSitecoreField">
<xsl:with-param name="root" select="$sc_currentitem"/>
<xsl:with-param name="fieldName" select="'RSS Title'"/>
</xsl:call-template>
</div>
<div class="ReadingList">
<xsl:for-each select="rss/channel/item">
<xsl:if test="position() <= 2">
<div class="ReadingItemContainer">
<div class="ReadingImgContainer">
<a class="ReadingUrl" target="_blank">
<xsl:attribute name="href">
<xsl:value-of select="link"/>
</xsl:attribute>
<img alt="book">
<xsl:attribute name="src">
<xsl:value-of select="url"/>
</xsl:attribute>
</img>
</a>
</div>
<div class="ReadingDescriptionContainer">
<p class="ReadingDate">
<xsl:value-of select="title"/>
</p>
<p class="ReadingDescription">
<xsl:value-of select="description"/>
</p>
</div>
</div>
</xsl:if>
</xsl:for-each>
</div>
</div>
</xsl:template>
<!-- Render text field from Sitecore -->
<xsl:template name="OutputSitecoreField">
<xsl:param name="root" select="''"/>
<xsl:param name="fieldName" select="''"/>
<xsl:if test="$fieldName != ''">
<xsl:value-of select="sc:fld($fieldName,$root)"/>
</xsl:if>
</xsl:template>
<xsl:template name="removeHtmlTags">
<xsl:param name="html"/>
<xsl:choose>
<xsl:when test="contains($html, '<')">
<xsl:value-of select="substring-before($html, '<')"/>
<!-- Recurse through HTML -->
<xsl:call-template name="removeHtmlTags">
<xsl:with-param name="html" select="substring-after($html, '>')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$html"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
每次用户进入页面时我如何显示随机项? 很抱歉这么多代码,我不确定代码的某些部分是否有用,所以我决定保留所有代码。谢谢你
答案 0 :(得分:0)
每次用户进入页面时我如何显示随机项目?
如果您只使用XSLT 1.0或2.0,而不使用每次执行转换时都会更改的外部输入,则无法执行此操作。
我认为没有必要陈述这样一个明显的事实:任何XSL转换都是确定性算法。给定特定输入,它将始终产生相同的输出。
如果页面每次都相同,那么&#34;随机&#34;您选择的项目每次都会相同。你必须提供额外的种子&#34;每次不都是相同的(例如,当前时间),如果你想让它工作的话。
顺便说一句,如果你设法获得当前时间,你可以简单地使用:
floor ( $seconds * $count-items / 60 ) + 1
确定要选择的项目数。
答案 1 :(得分:-1)
我建议读这个:
Casting the Dice with FXSL: Random Number Generation Functions in XSLT
这是我14年前写的一篇论文。它讨论了FXSL库为XSLT进行函数式编程提供的功能,用于生成随机数,随机序列,随机索引,项目服从给定概率分布的序列等。
顶级TOC如下所示:
在FXSL的XSLT 2.0版本中,无需扩展功能 - 为了获得生成随机序列(或随机数)的种子,可以使用标准的XPath 2.0函数,例如: current-dateTime()
或 current-time()
在FXSL的XSLT 1.0版中,可能需要xxx:node-set()
。此外,在XSLT 1.0中,需要提供一个种子,它必须作为参数传递(例如当前时间的秒数,或者自某个dateTime以来经过的秒数),或者使用扩展函数,它将提供同样的。