如何循环遍历节点列表并根据我循环的子节点创建新节点

时间:2012-06-06 21:03:06

标签: xslt

这可能是一个基本问题,但这个新手一直在苦苦挣扎,谷歌搜索并无法解决这个问题。

我有一个类似于此的xml文档。

 <x99:events xmlns:x99="http://www.foo.com/x99" xmlns:xl="http://www.w3.org/1999/xlink" pubdate="2012-05-29T11:14:14-06:00">
    <x99:event xl:href="event.xml?event_id=255918" id="foo" status="new">
        <x99:event_id>255918</x99:event_id>

        <x99:custom_attribute xmlns:x99="http://www.foo.com/x99" status="new">
            <x99:attribute_id>22</x99:attribute_id>
            <x99:attribute_value>hi there</x99:attribute_value>
        </x99:custom_attribute>

        <x99:custom_attribute xmlns:x99="http://www.foo.com/x99" status="new">
            <x99:attribute_id>26</x99:attribute_id>
            <x99:attribute_value>this is a test</x99:attribute_value>
        </x99:custom_attribute>

        <x99:custom_attribute xmlns:x99="http://www.foo.com/x99" status="new">
            <x99:attribute_id>12</x99:attribute_id>
            <x99:attribute_value>Yes</x99:attribute_value>
        </x99:custom_attribute>
    </x99:event>
</x99:events>

我有一些xsl可以转换xml。

在我的xsl中,我需要能够遍历custom_attribute节点,对于每个attribute_id,我发现我需要根据custom_attribute节点的子节点创建一个包含一些值的节点。

这是我的伪代码。我需要这样的东西。

<xsl:for-each select="x99:custom_attribute">

    <xsl:when test="number(x99:attribute_id) = 22>
        <x99:text>You chose twenty two and your attribute value is <x99:attribute_value></x99:text>
    </xsl:when>

    <xsl:when test="number(x99:attribute_id) = 26>
        <x99:text>Twenty six is a great answer! and your attribute value is <x99:attribute_value></x99:text></x99:text>
    </xsl:when>

</xsl:for-each>

这是我的xsl。

我的xsl技能处于最基本的水平,而我的xml也不是很好。有些灵魂可以给我一些建议吗?我有点过头了。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
  xmlns:xl="http://www.w3.org/1999/xlink"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xhtml="http://www.w3.org/1999/xhtml"
  xmlns:b="http://www.someurl.com/b"
  xmlns:s="http://www.someurl.com/s"
  xmlns:c="http://foo.com/c"
  xmlns:x99="http://foo.com/x99"
  exclude-result-prefixes="xl x99">

    <xsl:param name="base_url" select="''" />
    <xsl:param name="session_id" select="''" />
    <xsl:param name="TaskDir" select="''" />

    <xsl:template match="/">
        <xsl:call-template name="SendConfirmationEmail">
            <xsl:with-param name="EventID" select="/x99:events/x99:event/x99:event_id"/>
            <xsl:with-param name="SiteURL" select="'https://foobar.com/123Test/#details'" />
        </xsl:call-template>

        <xsl:apply-templates select="node()" />
    </xsl:template>


    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>


    <xsl:template name="SendConfirmationEmail">
        <xsl:param name="EventID" select="''"/>

        <xsl:result-document>
            <schedule>
                <job>
                    <name>Email Confirmation</name>
                    <active>T</active>
                    <http>
                        <body>
                            <x99:email xmlns:x99="http://foo.com/x99">
                                <x99:mail>
                                    <x99:body>

                                        <x99:text>Your event ID is <xsl:value-of select="$EventID"/></x99:text>


                                        // I want to be able to loop through my x99:attribute_id values here and create new x99:text nodes.


                                    </x99:body>
                                </x99:mail>
                            </x99:email>
                        </body>
                    </http>
                </job>
            </schedule>
        </xsl:result-document>
    </xsl:template>


</xsl:stylesheet>

坦率地说,我需要知道如何......

  • 遍历custom_attribute节点,并为每个节点创建一个包含
  • 的x99:text节点
  • 基于子attribute_id
  • 的值的字符串
  • attribute_value节点的内容

1 个答案:

答案 0 :(得分:0)

首先,不要使用带参数的命名模板,就像使用CALL编程来调用子例程一样,只需定义一个模板来处理event_id元素,例如<xsl:template match="event_id">。我认为你的意思是html,而不是http。您需要在href元素上指定<xsl:result-document>属性,以便它知道放置文档的位置。您显然是在x99命名空间中将元素编写到HTML中 - 这真的是您想要做的吗?

关于属性元素的“循环”,在XSLT思维模式中,最好说“处理”它们。在<x99:text>下添加<xsl:apply-templates/>元素,然后定义一个模板来处理自定义属性元素(<xsl:template match="x99:custom-attribute">。在该模板中,放置类似于for-each中的内容你的伪代码,除了说number(x99:attribute_id),你只需要number(.),因为我们已经在那个节点。但请注意,<xsl:when>元素只能在{{1}内1}}。