我有以下xml文件:
<root>
<sub type="print">print</sub>
<sub type="email">email</sub>
</root>
我希望将每种类型与以下列表相匹配:
<types>
<type>email</type>
<type>broadcast</type>
<type>mobile</type>
<type>print</type>
<type>web</type>
</types>
使用这个xslt,其中“doc”是xml,“types”上面的列表作为参数传递:
<xsl:stylesheet
xmlns = "http://www.w3.org/1999/xhtml"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
version="2.0">
<xsl:output method="xhtml" indent="yes" />
<xsl:param name="doc"/>
<xsl:param name="types"/>
<xsl:template match="/">
<xsl:for-each select="$doc//sub">
<xsl:variable name="count">
<xsl:number value="position()" format="1"/>
</xsl:variable>
<ul>
<xsl:for-each select="$types//type">
<xsl:choose>
<xsl:when test="$doc//sub[$count]/@type = text()">
<li>
<b>
<xsl:value-of select="$doc//sub[$count]/@type"/> - <xsl:value-of select="text()"/>
</b>
</li>
</xsl:when>
<xsl:otherwise>
<li>
<xsl:value-of select="$doc//sub[$count]/@type"/> - <xsl:value-of select="text()"/>
</li>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</ul>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
这应该给我一个无序的列表,为我的xml中的每个子打印从子类型然后每种类型的类型。当子和类型匹配时,它应该是粗体。我想要这个:
<ul>
<li>print - email</li>
<li>print - broadcast</li>
<li>print - mobile</li>
<li><b>print - print</b></li>
<li>print - web</li>
</ul>
<ul>
<li><b>email - email</b></li>
<li>email - broadcast</li>
<li>email - mobile</li>
<li>email - print</li>
<li>email - web</li>
</ul>
但我明白了:
<ul>
<li><b>print email - email</b></li>
<li>print email - broadcast</li>
<li>print email - mobile</li>
<li><b>print email - print</b></li>
<li>print email - web</li>
</ul>
<ul>
<li><b>print email - email</b></li>
<li>print email - broadcast</li>
<li>print email - mobile</li>
<li><b>print email - print</b></li>
<li>print email - web</li>
</ul>
感谢您的帮助。
答案 0 :(得分:1)
我认为这可能与//
的多种用途有关。
尝试用以下代码替换根模板(match="/"
):
<xsl:template match="/">
<html>
<xsl:for-each select="$doc/root/sub">
<xsl:variable name="vType" select="@type"/>
<ul>
<xsl:for-each select="$types/types/type">
<li>
<xsl:choose>
<xsl:when test=".=$vType">
<b>
<xsl:value-of select="concat($vType,' - ',.)"/>
</b>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat($vType,' - ',.)"/>
</xsl:otherwise>
</xsl:choose>
</li>
</xsl:for-each>
</ul>
</xsl:for-each>
</html>
</xsl:template>
注意:我添加了<html>
标记,以便在测试时保持输出格式正确。
答案 1 :(得分:0)
将子文件作为主要输入,并将subtypes.xml
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="sub">
<ul>
<xsl:apply-templates select="doc('subtypes.xml')">
<xsl:with-param name="this" select="." tunnel="yes"/>
</xsl:apply-templates>
</ul>
</xsl:template>
<xsl:template match="type">
<xsl:param name="this" tunnel="yes"/>
<li>
<xsl:choose>
<xsl:when test="$this/@type=.">
<b><xsl:value-of select="$this/@type,' - ',."/></b>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$this/@type,' - ',."/>
</xsl:otherwise>
</xsl:choose>
</li>
</xsl:template>
</xsl:stylesheet>
产生
<?xml version="1.0" encoding="UTF-8"?>
<ul>
<li>print - email</li>
<li>print - broadcast</li>
<li>print - mobile</li>
<li><b>print - print</b></li>
<li>print - web</li>
</ul>
<ul>
<li><b>email - email</b></li>
<li>email - broadcast</li>
<li>email - mobile</li>
<li>email - print</li>
<li>email - web</li>
</ul>