XSLT <xsl:otherwise> కేంద్రం
నిర్వచనం మరియు వినియోగం
<xsl:otherwise> కేంద్రం ప్రాసెస్ చేయబడని పరిస్థితిలో, <xsl:choose> కేంద్రం యొక్క డిఫాల్ట్ ప్రవర్తనను నిర్ణయిస్తుంది.
వినియోగం
<xsl:otherwise> <!-- Content:template --> </xsl:otherwise>
అంశం
కాని ఎంతో విధమైనది
ఉదాహరణ
ఉదాహరణ 1
cd యొక్క ధర 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" యొక్క విలువ అనగా "green" అవుతుంది:
<xsl:variable name="color"> <xsl:choose> <xsl:when test="@color"> <xsl:value-of select="@color"/> </xsl:when> <xsl:otherwise>green</xsl:otherwise> </xsl:choose> </xsl:variable>