我需要语法方面的帮助
从 CMS 我得到一些标题信息(音乐、电视、喜剧)现在我需要在 xsl 中运行检查以查看出现哪个,然后呈现适当的内容(在我的情况下是一组复选框)
根据出现的标题,我想呈现不同的 XSL 代码。如果 Title = TV 则显示此 XSL,否则如果 Title = Music 则呈现此 XSL。
到目前为止,这是我的代码,但是它抛出了一个错误,因为我在 XSL if 语句中有一个 XSL when 语句。
<xsl:template name="PrintTitles">
<xsl:param name="ids"/>
<xsl:if test="$ids">
<xsl:variable name="itm_id" select="substring-before($ids, '|')"/>
<!-- xsl:if -->
<xsl:if test="$itm_id">
<!-- Variable item & title -->
<xsl:variable name="itm" select="sc:item($itm_id,.)"/>
<xsl:variable name="title" select="sc:fld('Title', $itm)"/>
<div class="related-genre-types-{position()}" style="display:none;"><xsl:value-of select="sc:fld('Title', $itm)"/></div>
<div class="music-choices" style="display:block;">
<!-- Displays title -->
<div class="choices-title"><xsl:value-of select="sc:fld('Title', $itm)"/></div>
<div class="choices-checkboxes">
<!-- where I try to use the 'when conditional' throws error because this is inside of <xsl:if test="$itm_id">-->
<!-- if title = TV then render this -->
<xsl:when test="title = TV">
<xsl:for-each select="$TVGenres/item">
<div class="category_box">
<input type="checkbox" id="getf{sc:fld('@id',.)}" name="getfItem" value="{sc:fld('title',.)}" />
<label for="get{sc:fld('@id',.)}"><xsl:value-of select="sc:fld('title',.)" /></label>
</div>
</xsl:for-each>
</xsl:when>
<!-- if title = Music then render this -->
<xsl:when test="title = Music">
<xsl:for-each select="$MusicGenres/item">
<div class="category_box">
<input type="checkbox" id="getf{sc:fld('@id',.)}" name="getfItem" value="{sc:fld('title',.)}" />
<label for="get{sc:fld('@id',.)}"><xsl:value-of select="sc:fld('title',.)" /></label>
</div>
</xsl:for-each>
</xsl:when>
<!-- if title = Comedy then render this -->
<xsl:when test="title = Comedy">
<xsl:for-each select="$ComedyGenres/item">
<div class="category_box">
<input type="checkbox" id="getf{sc:fld('@id',.)}" name="getfItem" value="{sc:fld('title',.)}" />
<label for="get{sc:fld('@id',.)}"><xsl:value-of select="sc:fld('title',.)" /></label>
</div>
</xsl:for-each>
</xsl:when>
</div>
<div class="clearfix"></div>
</div>
</xsl:if>
<xsl:call-template name="PrintTitles">
<xsl:with-param name="ids" select="substring-after($ids, '|')"/>
</xsl:call-template>
</xsl:if>
谢谢参观!