J'essaie d'implémenter une instruction if -else dans XSLT mais mon code ne s'analyse pas. Quelqu'un a-t-il une idée?
<xsl:variable name="CreatedDate" select="@createDate"/>
<xsl:variable name="IDAppendedDate" select="2012-01-01" />
<b>date: <xsl:value-of select="$CreatedDate"/></b>
<xsl:if test="$CreatedDate > $IDAppendedDate">
<h2> mooooooooooooo </h2>
</xsl:if>
<xsl:else>
<h2> dooooooooooooo </h2>
</xsl:else>
Vous devez le réimplémenter en utilisant la balise <xsl:choose>
:
<xsl:choose>
<xsl:when test="$CreatedDate > $IDAppendedDate">
<h2> mooooooooooooo </h2>
</xsl:when>
<xsl:otherwise>
<h2> dooooooooooooo </h2>
</xsl:otherwise>
</xsl:choose>
Si l'instruction est utilisée pour vérifier une seule condition rapidement. Lorsque vous avez plusieurs options, utilisez <xsl:choose>
comme illustré ci-dessous:
<xsl:choose>
<xsl:when test="$CreatedDate > $IDAppendedDate">
<h2>mooooooooooooo</h2>
</xsl:when>
<xsl:otherwise>
<h2>dooooooooooooo</h2>
</xsl:otherwise>
</xsl:choose>
Vous pouvez également utiliser plusieurs balises <xsl:when>
pour exprimer les motifs If .. Else If
ou Switch
comme illustré ci-dessous:
<xsl:choose>
<xsl:when test="$CreatedDate > $IDAppendedDate">
<h2>mooooooooooooo</h2>
</xsl:when>
<xsl:when test="$CreatedDate = $IDAppendedDate">
<h2>booooooooooooo</h2>
</xsl:when>
<xsl:otherwise>
<h2>dooooooooooooo</h2>
</xsl:otherwise>
</xsl:choose>
L'exemple précédent serait équivalent au pseudocode ci-dessous:
if ($CreatedDate > $IDAppendedDate)
{
output: <h2>mooooooooooooo</h2>
}
else if ($CreatedDate = $IDAppendedDate)
{
output: <h2>booooooooooooo</h2>
}
else
{
output: <h2>dooooooooooooo</h2>
}
Si je peux faire quelques suggestions (deux ans plus tard, mais j'espère utile aux futurs lecteurs):
h2
.ooooooooooooo
.if/then/else
si vous utilisez XSLT 2.0.<h2>
<xsl:choose>
<xsl:when test="$CreatedDate > $IDAppendedDate">m</xsl:when>
<xsl:otherwise>d</xsl:otherwise>
</xsl:choose>
ooooooooooooo
</h2>
<h2>
<xsl:value-of select="if ($CreatedDate > $IDAppendedDate) then 'm' else 'd'"/>
ooooooooooooo
</h2>
L'approche la plus directe consiste à effectuer un deuxième if-test, mais avec la condition inversée. Cette technique est plus courte, plus agréable pour les yeux et plus facile à obtenir qu'un bloc imbriqué "Choisissez-quand-sinon-autrement":
<xsl:variable name="CreatedDate" select="@createDate"/>
<xsl:variable name="IDAppendedDate" select="2012-01-01" />
<b>date: <xsl:value-of select="$CreatedDate"/></b>
<xsl:if test="$CreatedDate > $IDAppendedDate">
<h2> mooooooooooooo </h2>
</xsl:if>
<xsl:if test="$CreatedDate <= $IDAppendedDate">
<h2> dooooooooooooo </h2>
</xsl:if>
Voici un exemple concret de la technique utilisée dans la feuille de style d'un site Web gouvernemental: http://w1.weather.gov/xml/current_obs/latest_ob.xsl