有没有办法在以下情况下使用 for 循环打印 XSL 1.0 模板中的金额?
Is there a way to print the amount in XSL 1.0 template with for loop for below scenario?
我有要求或逻辑,其中需要使用 for 循环逻辑以 100000 的差异打印以下标签。请帮助 XSL 1.0
情景一
<Amt>
430000
</Amt>
需要输出
<Amt>100000</Amt>
<Amt>100000</Amt>
<Amt>100000</Amt>
<Amt>100000</Amt>
<Amt>30000</Amt>
场景二
<Amt>
299999
</Amt>
需要输出
<Amt>100000</Amt>
<Amt>100000</Amt>
<Amt>99999</Amt>
场景 3
<Amt>
23000
</Amt>
需要输出
<Amt>23000</Amt>
XSLT 1.0 中没有“for 循环”这样的东西。你想要的结果可以通过调用一个递归的命名模板得到:
<xsl:template name="split-to-lakhs">
<xsl:param name="amt"/>
<xsl:choose>
<xsl:when test="$amt > 100000">
<Amt>100000</Amt>
<!-- recursive call -->
<xsl:call-template name="split-to-lakhs">
<xsl:with-param name="amt" select="$amt - 100000"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<Amt>
<xsl:value-of select="$amt"/>
</Amt>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
我有要求或逻辑,其中需要使用 for 循环逻辑以 100000 的差异打印以下标签。请帮助 XSL 1.0
情景一
<Amt>
430000
</Amt>
需要输出
<Amt>100000</Amt>
<Amt>100000</Amt>
<Amt>100000</Amt>
<Amt>100000</Amt>
<Amt>30000</Amt>
场景二
<Amt>
299999
</Amt>
需要输出
<Amt>100000</Amt>
<Amt>100000</Amt>
<Amt>99999</Amt>
场景 3
<Amt>
23000
</Amt>
需要输出
<Amt>23000</Amt>
XSLT 1.0 中没有“for 循环”这样的东西。你想要的结果可以通过调用一个递归的命名模板得到:
<xsl:template name="split-to-lakhs">
<xsl:param name="amt"/>
<xsl:choose>
<xsl:when test="$amt > 100000">
<Amt>100000</Amt>
<!-- recursive call -->
<xsl:call-template name="split-to-lakhs">
<xsl:with-param name="amt" select="$amt - 100000"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<Amt>
<xsl:value-of select="$amt"/>
</Amt>
</xsl:otherwise>
</xsl:choose>
</xsl:template>