عنصر <xsl:choose> XSLT
تعریف و استفاده
عنصر <xsl:choose> با عناصر <xsl:when> و <xsl:otherwise> ترکیب میشود تا تستهای چندگانهای انجام دهد.
اگر هیچ <xsl:when> درست نباشد، محتوای <xsl:otherwise> پردازش میشود.
اگر هیچ <xsl:when> درست نباشد و هیچ <xsl:otherwise> وجود نداشته باشد، هیچ محتوایی ایجاد نمیشود.
توضیح:برای تستهای سادهتر، از عناصر <xsl:if> استفاده کنید.
قواعد
<xsl:choose> <!-- Content:(xsl:when+,xsl:otherwise?) --> </xsl:choose>
ویژگی
هیچچی
مثال
مثال 1
مزید تخفیف میشود اگر قیمت CD بیشتر از 10 باشد، پس رنگ پسزمینه artist تغییر میکند:
<?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 عناصر current نسبت دهید. اگر عناصر current ویژگی 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>