21

如何将值重新分配给以前分配的变量?我需要它像这样工作:

<xsl:variable name="variable2" select="'N'" />
....
<xsl:when test="@tip = '2' and $variable2 != 'Y'">                                                   
    <xsl:variable name="variable2" select="'Y'" />
</xsl:when>
4

5 回答 5

21

XSLT 中的变量只能被赋值一次。这是设计使然。请参阅为什么使用函数式语言?总体上了解动机。

与其重新分配变量,不如直接针对输入文档编写条件,或者使用不同的局部参数递归调用函数(或命名模板)。

您需要做的任何事情都可以通过不需要重新分配变量的方法来完成。要获得更具体的答案,请提供更具体的问题。

也可以看看:

于 2013-10-08T18:55:44.850 回答
8

只需使用多个变量。这是您的示例...

    <xsl:variable name="variable1" select="'N'" />
    ....
    <xsl:variable name="variable2">
        <xsl:choose>
            <xsl:when test="@tip = '2' and $variable1 != 'Y'">
                <xsl:value-of select="'Y'" />
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="$variable1" />
            </xsl:otherwise>
        </xsl:choose>
    </xsl:variable>
于 2016-04-14T16:14:10.353 回答
4

你不能——XSLT 中的“变量”实际上更像其他语言中的常量,它们不能改变值。

于 2013-10-08T18:23:07.470 回答
0

可以使用累加器声明可重新分配的变量,该累加器可从 XSLT 版本 3.0 获得。:

    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xs" version="3.0" >
      <xsl:mode use-accumulators="variable2" streamable="no"/>
      <xsl:output omit-xml-declaration="no" indent="yes"/>

      <xsl:accumulator name="variable2" initial-value="'N'">
       <xsl:accumulator-rule match="Inpayment" select="if ($value = 'N' and @tip = '2') then 'Y' else 'N' "/>
      </xsl:accumulator>

      <xsl:template match="node()|@*">
        <xsl:copy>
          <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
      </xsl:template>

      <xsl:template match="Inpayment">
        <xsl:copy>
          <xsl:apply-templates select="@*"/>
          <xsl:value-of select="accumulator-before('variable2')"/>
          <xsl:apply-templates select="node()"/>
        </xsl:copy>
      </xsl:template>

    </xsl:stylesheet>
于 2017-09-27T11:07:30.307 回答
-3

在我测试之前,我几乎相信其他回复中的观点。它真的可以像那样运行良好。xslt 处理器是 saxon-he 9.8.0.12

我的代码:</p>

        <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:map="http://www.w3.org/2005/xpath-functions/map"
    exclude-result-prefixes="xs map"
    version="2.0">

    <xsl:template match="/">
        <xsl:variable name="i1" select="123" as="xs:integer"/>
        <xsl:variable name="s1" select="'abcd'" as="xs:string"/>
        <xsl:variable name="d1" select="234.5" as="xs:float"/>

        <!-- we test that variable v1 can be assignment multi times and it is ok.  -->
        <xsl:variable name="v1" select="$i1"/>
        v1 is: <xsl:value-of select="$v1"/>
        <xsl:variable name="v1" select="$s1"/>
        v1 is: <xsl:value-of select="$v1"/>
        <xsl:variable name="v1" select="$d1"/>
        v1 is: <xsl:value-of select="$v1"/>

        <xsl:variable name="map1" select="map{'haha':119, 'good':110}"/>
        <xsl:variable name="map2" select="map:put($map1, 'go', 122)"/>
        <xsl:variable name="map1" select="map:put($map2, 'hello', 999)"/>
        map1(haha) is <xsl:sequence select="$map1?haha"/>
        map1(hello) is <xsl:sequence select="$map1?hello"/>
    </xsl:template>

</xsl:stylesheet>

运行的结果screenshort

作为你的问题,你可以这样做:

<xsl:variable name="variable2" select="'N'" />
<xsl:variable name="variable2" select="hello:func1()" />

<xsl:function name="hello:func1" as="xl:string">
    .....
    <xsl:when test="@tip = '2' and $variable2 != 'Y'">                                                   
        <xsl:value-of select="'Y'" />
    </xsl:when>
</xsl:function>
于 2019-12-02T01:52:37.447 回答