0

这可能是一个基本问题,但这个新手一直在苦苦挣扎和谷歌搜索,却无法弄清楚。

我有一个与此类似的 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>

我有一些转换 xml 的 xsl。

在我的 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 节点,其中包含
  • 基于子属性 ID 值的字符串
  • attribute_value 节点的内容
4

1 回答 1

0

首先,不要使用带参数的命名模板,就像在 FORTRAN 中使用 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>元素只能在<xsl:choose>.

于 2012-06-07T02:01:11.847 回答