xml – 如何在XSLT中实现if-else语句?

前端之家收集整理的这篇文章主要介绍了xml – 如何在XSLT中实现if-else语句?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在XSLT中实现一个if -else语句,但我的代码只是不解析。有没有任何想法?
<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>
您必须使用< xsl:choose>标签
<xsl:choose>
         <xsl:when test="$CreatedDate > $IDAppendedDate">
           <h2> mooooooooooooo </h2>
         </xsl:when>
         <xsl:otherwise>
          <h2> dooooooooooooo </h2>
         </xsl:otherwise>
       </xsl:choose>
原文链接:https://www.f2er.com/xml/294112.html

猜你在找的XML相关文章