web-dev-qa-db-fra.com

Comment implémenter l'instruction if-else dans XSLT?

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>
157
Funky

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>
290
px1mp

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>
   }
60
InfantPro'Aravind'

Si je peux faire quelques suggestions (deux ans plus tard, mais j'espère utile aux futurs lecteurs):

  • Décomposez l'élément commun h2.
  • Décomposez le texte commun ooooooooooooo.
  • Tenez compte de la nouvelle construction XPath 2.0 if/then/else si vous utilisez XSLT 2.0.

Solution XSLT 1.0 (fonctionne également avec XSLT 2.0)

<h2>
  <xsl:choose>
    <xsl:when test="$CreatedDate > $IDAppendedDate">m</xsl:when>
    <xsl:otherwise>d</xsl:otherwise>
  </xsl:choose>
  ooooooooooooo
</h2>

Solution XSLT 2.0

<h2>
   <xsl:value-of select="if ($CreatedDate > $IDAppendedDate) then 'm' else 'd'"/>
   ooooooooooooo
</h2>
36
kjhughes

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 &gt; $IDAppendedDate">
        <h2> mooooooooooooo </h2>
     </xsl:if>
     <xsl:if test="$CreatedDate &lt;= $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

1
Raymond Hettinger