gpt4 book ai didi

xml - 如何通过 XSLT 选择随机项 XML?

转载 作者:数据小太阳 更新时间:2023-10-29 02:47:00 24 4
gpt4 key购买 nike

我需要通过 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() &lt;= 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, '&lt;')">
<xsl:value-of select="substring-before($html, '&lt;')"/>
<!-- Recurse through HTML -->
<xsl:call-template name="removeHtmlTags">
<xsl:with-param name="html" select="substring-after($html, '&gt;')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$html"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>

如何在用户每次访问页面时显示随机项目?抱歉,代码太多,我不确定代码的某些部分是否有用,所以我决定保留所有代码。谢谢你

最佳答案

How i can show random item every time user is going on the page?

如果您只使用 XSLT 1.0 或 2.0,没有每次执行转换时都会更改的一些外部输入,这是不可能的。

我认为没有必要陈述这样一个显而易见的事实:任何 XSL 转换都是一种确定性算法。给定一个特定的输入,它总是会产生相同的输出。

如果每次的页面都一样,那么你选择的“随机”项也每次都是一样的。如果您希望它起作用,您必须提供一个额外的“种子”,它不会每次(例如,当前时间)都相同。


顺便说一句,如果你设法获得当前时间,你可以简单地使用:

floor ( $seconds * $count-items / 60 ) + 1

确定要选择的项目数。

关于xml - 如何通过 XSLT 选择随机项 XML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37255413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com