gpt4 book ai didi

c# - 在 XSLT 中迭代

转载 作者:行者123 更新时间:2023-12-04 04:44:48 25 4
gpt4 key购买 nike

我有以下 XSL:

<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
<xsl:param name='width' select ="270"/>
<xsl:param name='height' select="180"/>
<xsl:variable name="counter" select="0" />
<xsl:template name="while">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<line x1="{$counter}" y1="0.5" x2="{$counter}" y2="10.5" stroke="black" stroke-width="1" />
<xsl:variable name="counter" select="$counter + 10" />
<xsl:if test="$counter &lt; $width">
<xsl:call-template name="while"/>
</xsl:if>
</svg>
</xsl:template>
</xsl:stylesheet>

我试图在宽度上每 10 像素画一条线,比如标尺标记。

当我运行这段代码时,它陷入了一个循环。我无法调试,我只是收到堆栈溢出异常。我假设我的计数器值没有增加 10,或者我对检查计数器 < 宽度是否不正确的评估。

有人可以指出我正确的方向吗?

最佳答案

您需要使用 xsl:with-param 将计数传递给您的模板。 .

示例:

<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
<xsl:output indent="yes"/>
<xsl:param name='width' select ="270"/>
<xsl:param name='height' select="180"/>

<xsl:template match="/">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<xsl:call-template name="while"/>
</svg>
</xsl:template>

<xsl:template name="while">
<xsl:param name="currentCount" select="0"/>
<line x1="{$currentCount}" y1="0.5" x2="{$currentCount}" y2="10.5" stroke="black" stroke-width="1" />
<xsl:variable name="counter" select="$currentCount + 10" />
<xsl:if test="$counter &lt; $width">
<xsl:call-template name="while">
<xsl:with-param name="currentCount" select="$counter"/>
</xsl:call-template>
</xsl:if>
</xsl:template>

</xsl:stylesheet>

关于c# - 在 XSLT 中迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18363534/

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