我已经声明了2个变量,并用选择填充它们。我想在IFS之后检查它们,但我只犯了两个错误,但我不知道它们来自哪里。
我试图更改IF语句,但没有任何可行。
<root>
<xsl:choose>
<xsl:when test="Request/Query/Parameter = 'DateiPfad'">
<xsl:variable name="Con1">
2001
</xsl:variable>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="Con1">
2000
</xsl:variable>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="Request/Query/Parameter = 'DateiName'">
<xsl:variable name="Con2">
2001
</xsl:variable>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="Con2">
2000
</xsl:variable>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$Con1 == 2001 and $Con2 == 2001">
<xsl:processing-instruction name="ConditionState">
2001
</xsl:processing-instruction>
</xsl:if>
<xsl:if test="$Con1 == 2000 and $Con2 == 2000">
<xsl:processing-instruction name="ConditionState">
2000
</xsl:processing-instruction>
</xsl:if>
</root>
我希望结果如果结果会给我2000或2001作为我在过程中需要的条件状态...
变量范围范围为声明的块,这意味着在您的情况下,它们仅存在于 xsl:when
(and xsl:otherwise
(块中,并且在此外部无法访问。
您可以做的是将xsl:choose
放入xsl:variable
而不是将
<xsl:template match="/">
<root>
<xsl:variable name="Con1">
<xsl:choose>
<xsl:when test="Request/Query/Parameter = 'DateiPfad'">2001</xsl:when>
<xsl:otherwise>2000</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="Con2">
<xsl:choose>
<xsl:when test="Request/Query/Parameter = 'DateiName'">2001</xsl:when>
<xsl:otherwise>2000</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="$Con1 = 2001 and $Con2 = 2001">
<xsl:processing-instruction name="ConditionState">
2001
</xsl:processing-instruction>
</xsl:if>
<xsl:if test="$Con1 = 2000 and $Con2 = 2000">
<xsl:processing-instruction name="ConditionState">
2000
</xsl:processing-instruction>
</xsl:if>
</root>
</xsl:template>
当然,在您显示的示例中,您真的不需要xsl:variable
...
<xsl:template match="/">
<root>
<xsl:if test="Request/Query/Parameter = 'DateiPfad' and Request/Query/Parameter = 'DateiName'">
<xsl:processing-instruction name="ConditionState">
2001
</xsl:processing-instruction>
</xsl:if>
<xsl:if test="not(Request/Query/Parameter = 'DateiPfad') and not(Request/Query/Parameter = 'DateiName')">
<xsl:processing-instruction name="ConditionState">
2000
</xsl:processing-instruction>
</xsl:if>
</root>
</xsl:template>