传递参数变量XSLT 1.0

时间:2015-04-19 16:20:27

标签: xml xslt xslt-1.0

我有类似以下XML的内容:(但产品更多)

<?xml version="1.0" encoding="UTF-8"?>
<products>
    <product>
        <name>Mango</name>
        <type>fruit</type>
        <imageurl>pic.jpeg</imageurl>
    </product>
    <product>
        <name>banana</name>
        <type>fruit</type>
        <imageurl>pic3.jpeg</imageurl>
    </product>
    <product>
        <name>duck</name>
        <type>mammal</type>
        <imageurl>pic2.jpeg</imageurl>
    </product>
</products>

这个XSL :(但有更多的元素和属性)

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:param name="typeSelected"/>
<xsl:template match="product/{$typeSelected}">
    <xsl:element name="img">
        <xsl:attribute name="class">juice</xsl:attribute>
        <xsl:attribute name="src">
            <xsl:value-of select="imageurl"/>
        </xsl:attribute>
    </xsl:element>
</div>
</xsl:template>

我正在使用外部JavaScript文件设置参数值,但我想仅将<type>匹配该参数值的产品分组。显然,XSL需要改变并阅读,我知道我不能在匹配语句中使用参数。感觉就像我尝试的不应该太难。我错过了一些明显的东西吗?

鉴于参数fruit,我希望输出类似于:

<img class="juice" src="pic.jpeg"/>
<img class="juice" src="pic3.jpeg"/>

1 个答案:

答案 0 :(得分:1)

我会这样做:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes"/>

<xsl:param name="typeSelected"/>

<xsl:key name="product-by-type" match="product" use="type" />

<xsl:template match="/">
    <root>
        <xsl:for-each select="key('product-by-type', $typeSelected)">
            <img class="juice" src="{imageurl}"/>
        </xsl:for-each>
    </root>
</xsl:template>

</xsl:stylesheet>

结果(当$ typeSelected =“fruit”时):

<?xml version="1.0" encoding="utf-8"?>
<root>
   <img class="juice" src="pic.jpeg"/>
   <img class="juice" src="pic3.jpeg"/>
</root>

注意

  1. XML文档必须具有根元素;

  2. class属性的内容是硬编码的;我在你的输入中没有看到它;

  3. 鸭子不是哺乳动物。