gpt4 book ai didi

.net - 父子数据的 xslt 递归模板

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

我正在尝试围绕 xslt 进行思考。这里有一些关于 stackoverflow 帮助的问题( XSLT templates and recursionXSLT for-each loop, filter based on variable) 但我还是有点困惑。我想我是在“将模板视为函数” ( https://stackoverflow.com/questions/506348/how-do-i-know-my-xsl-is-efficient-and-beautiful )

无论如何...我的数据是

<Entities>
<Entity ID="8" SortValue="0" Name="test" ParentID="0" />
<Entity ID="14" SortValue="2" Name="test2" ParentID="8" />
<Entity ID="16" SortValue="1" Name="test3" ParentID="8" />
<Entity ID="17" SortValue="3" Name="test4" ParentID="14" />
<Entity ID="18" SortValue="3" Name="test5" ParentID="0" />
</Entities>

我想要的输出基本上是一个“ TreeView ”

<ul>
<li id="entity8">
test
<ul>
<li id="entity16">
test3
</li>
<li id="entity14">
test2
<ul>
<li id="entity17">
test4
</li>
</ul>
</li>
</ul>
</li>
<li id="entity18">
test5
</li>
</ul>

我目前使用的 XSLT 是错误的,因为它肯定“将模板视为函数”并且在执行时还会抛出 StackOverflowException (:-))

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="html" indent="yes"/>

<xsl:template match="Entities">
<ul>
<li>
<xsl:value-of select="local-name()"/>
<xsl:apply-templates/>
</li>
</ul>
</xsl:template>

<xsl:template match="//Entities/Entity[@ParentID=0]">
<xsl:call-template name="recursive">
<xsl:with-param name="parentEntityID" select="0"></xsl:with-param>
</xsl:call-template>
</xsl:template>

<xsl:template name="recursive">
<xsl:param name="parentEntityID"></xsl:param>
<xsl:variable name="counter" select="//Entities/Entity[@ParentID=$parentEntityID]"></xsl:variable>

<xsl:if test="count($counter) > 0">
<xsl:if test="$parentEntityID > 0">
</xsl:if>
<li>
<xsl:variable name="entityID" select="@ID"></xsl:variable>
<xsl:variable name="sortValue" select="@SortValue"></xsl:variable>
<xsl:variable name="name" select="@Name"></xsl:variable>
<xsl:variable name="parentID" select="@ParentID"></xsl:variable>

<a href=?ID={$entityID}&amp;ParentEntityID={$parentID}">
<xsl:value-of select="$name"/>
</a>

<xsl:call-template name="recursive">
<xsl:with-param name="parentEntityID" select="$entityID"></xsl:with-param>
</xsl:call-template>

</li>
</xsl:if>
</xsl:template>
</xsl:stylesheet>

我知道如何通过代码做到这一点,没问题。不过这一次,我正在寻找 xslt 中的解决方案,对于任何帮助,我们将不胜感激。

最佳答案

虽然 call-template 和命名模板是该语言的一个非常有用的特性,但如果您发现自己更喜欢它们而不是 apply-templates,这可能表明您仍在思考功能而不是模板。如果您在命名模板中做的第一件事是选择要操作的节点集,则尤其如此。

这是您尝试执行的操作的简单版本。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:template match="/">
<ul>
<xsl:apply-templates select="Entities/Entity[@ParentID=0]" />
</ul>
</xsl:template>

<xsl:template match="Entity">
<li>
<xsl:value-of select="@Name" />
<xsl:apply-templates select="../Entity[@ParentID=current()/@ID]" />
</li>
</xsl:template>
</xsl:stylesheet>

请注意,不需要计数器,因为“parent”的值提供了必要的上下文。

另请注意,所有 Entities 的行为方式相同,无论它们在树中的哪个位置,它们都包含它们的 @Name 值,并将模板应用于任何Entity 对象,其@ParentID 与当前级别的@ID 匹配。

关于.net - 父子数据的 xslt 递归模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13644680/

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