XSLT <xsl:otherwise> మూలకం

నిర్వచనం మరియు ఉపయోగం

<xsl:otherwise> మూలకం మరియు <xsl:choose> మూలకం యొక్క డిఫాల్ట్ ప్రవర్తనను నిర్వహిస్తుంది. <xsl:when> పరిస్థితులు అనుసరించకపోతే ఈ ప్రవర్తన జరుగుతుంది.

విధానం

<xsl:otherwise>
<!-- Content:template -->
</xsl:otherwise>

అంశం

నానీ

ప్రకటన

ఉదాహరణ 1

ఈ కోడ్ సిడీ ప్రైస్ కంటే 30 గరిష్టంగా ఉన్నప్పుడు artist కొలంచాలు పంపిణీ చేయడానికి పసుపు రంగు బ్యాక్గ్రౌండ్ కలిగిన పైగా నిర్వహిస్తుంది మరియు లేకపోతే మాత్రమే artist యొక్క name ప్రదర్శిస్తుంది:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Title</th>
        <th>Artist</th>
      </tr>
      <xsl:for-each select="catalog/cd">
      <tr>
        <td><xsl:value-of select="title"/></td>
      	<xsl:choose>
          <xsl:when test="price>'10'">
            <td bgcolor="#ff00ff">
            <xsl:value-of select="artist"/></td>
          </xsl:when>
          <xsl:otherwise>
            <td><xsl:value-of select="artist"/></td>
          </xsl:otherwise>
        </xsl:choose>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

XML ఫైల్ను చూడండి,XSL ఫైల్ను చూడండి,ఫలితాన్ని చూడండి.

ఉదాహరణ 2

ఒక "color" పేరుతో ఒక వ్యాక్యున్ పేరును పేర్కొనండి. దాని విలువను ప్రస్తుత అంగానికి కలిగిన color అట్రిబ్యూట్ కు కలిగించండి. ప్రస్తుత అంగం కలిగిన color అట్రిబ్యూట్ లేకపోతే, "color" యొక్క విలువ "గ్రీన్" ఉంటుంది:

<xsl:variable name="color">
  <xsl:choose>
    <xsl:when test="@color">
      <xsl:value-of select="@color"/>
    </xsl:when>  
    <xsl:otherwise>గ్రీన్</xsl:otherwise>
  </xsl:choose>
</xsl:variable>