Como implementar a instrução if-else no XSLT?

171

Estou tentando implementar uma instrução if -else no XSLT, mas meu código simplesmente não analisa. Alguém tem alguma idéia?

  <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>
Funky
fonte
Possível duplicata do XSL se outra condição

Respostas:

316

Você precisa reimplementá-lo usando a <xsl:choose>tag:

       <xsl:choose>
         <xsl:when test="$CreatedDate > $IDAppendedDate">
           <h2> mooooooooooooo </h2>
         </xsl:when>
         <xsl:otherwise>
          <h2> dooooooooooooo </h2>
         </xsl:otherwise>
       </xsl:choose>
px1mp
fonte
65

Se a instrução for usada para verificar apenas uma condição rapidamente. Quando você tiver várias opções, use <xsl:choose>como ilustrado abaixo:

   <xsl:choose>
     <xsl:when test="$CreatedDate > $IDAppendedDate">
       <h2>mooooooooooooo</h2>
     </xsl:when>
     <xsl:otherwise>
      <h2>dooooooooooooo</h2>
     </xsl:otherwise>
   </xsl:choose>

Além disso, você pode usar várias <xsl:when>tags para expressar If .. Else Ifou Switchpadrões, conforme ilustrado abaixo:

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

O exemplo anterior seria equivalente ao pseudocódigo abaixo:

   if ($CreatedDate > $IDAppendedDate)
   {
       output: <h2>mooooooooooooo</h2>
   }
   else if ($CreatedDate = $IDAppendedDate)
   {
       output: <h2>booooooooooooo</h2>
   }
   else
   {
       output: <h2>dooooooooooooo</h2>
   }
InfantPro'Aravind '
fonte
1
Você poderia, por favor, corrigir a declaração abaixo, todos sabemos que se (case> x) sem seguir {} executará apenas 1 linha a seguir, já vi isso em muitos iniciantes que escrevem exatamente o que você postou aqui, provavelmente muitos deles copiado 1: 1
Oliver
1
A propósito, a if elsecondição era apenas um exemplo ou um pseudocódigo. Bem, considero sua preocupação e a editei ..
InfantPro'Aravind '
36

Se eu puder oferecer algumas sugestões (dois anos depois, mas espero que sejam úteis para futuros leitores) :

  • Fatore o h2elemento comum .
  • Fatore o oooooooooooootexto comum .
  • Esteja ciente da nova if/then/elseconstrução XPath 2.0 se estiver usando o XSLT 2.0.

Solução XSLT 1.0 (também funciona com XSLT 2.0)

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

Solução XSLT 2.0

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

A abordagem mais direta é fazer um segundo teste se, mas com a condição invertida. Essa técnica é mais curta, mais fácil para os olhos e mais fácil de acertar do que um bloco aninhado quando escolher:

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

Aqui está um exemplo real da técnica usada na folha de estilo de um site do governo: http://w1.weather.gov/xml/current_obs/latest_ob.xsl

Raymond Hettinger
fonte
5
Ter que lembrar e garantir que o segundo ifteste corresponda ao complemento do primeiro torna qualquer modificação subsequente mais propensa a erros.
Philippe-André Lorin 13/01
2
Eu concordo, Pal. Além disso, acho que o exemplo acima é mais difícil de ler, enquanto o uso de a <xsl:choose>seria muito mais direto, seu significado muito mais claro.
Doug Barbieri
1

Originalmente desta postagem no blog . Podemos conseguir se mais, usando o código abaixo

<xsl:choose>
    <xsl:when test="something to test">

    </xsl:when>
    <xsl:otherwise>

    </xsl:otherwise>
</xsl:choose>

Então aqui está o que eu fiz

<h3>System</h3>
    <xsl:choose>
        <xsl:when test="autoIncludeSystem/autoincludesystem_info/@mdate"> <!-- if attribute exists-->
            <p>
                <dd><table border="1">
                    <tbody>
                        <tr>
                            <th>File Name</th>
                            <th>File Size</th>
                            <th>Date</th>
                            <th>Time</th>
                            <th>AM/PM</th>
                        </tr>
                        <xsl:for-each select="autoIncludeSystem/autoincludesystem_info">
                            <tr>
                                <td valign="top" ><xsl:value-of select="@filename"/></td>
                                <td valign="top" ><xsl:value-of select="@filesize"/></td>
                                <td valign="top" ><xsl:value-of select="@mdate"/></td>
                                <td valign="top" ><xsl:value-of select="@mtime"/></td>
                                <td valign="top" ><xsl:value-of select="@ampm"/></td>
                            </tr>
                        </xsl:for-each>
                    </tbody>
                </table>
                </dd>
            </p>
        </xsl:when>
        <xsl:otherwise> <!-- if attribute does not exists -->
            <dd><pre>
                <xsl:value-of select="autoIncludeSystem"/><br/>
            </pre></dd> <br/>
        </xsl:otherwise>
    </xsl:choose>

Minha saída

insira a descrição da imagem aqui

AabinGunz
fonte