0

我有以下 XML 文档:

<root someAttribute="someValue" />

现在我想使用 XSLT 添加一个标签,使文档看起来像这样:

<root someAttribute="someValue">
  <item>TEXT</item>
</root>

如果我再次重复使用 XSLT,它应该只添加另一个项目:

<root someAttribute="someValue">
  <item>TEXT</item>
  <item>TEXT</item>
</root>

听起来很简单,不是吗?这是我尝试了很多东西后得到的最好的:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >
    <xsl:param name="message" />

    <xsl:output method="xml" encoding="utf-8"/>

        <xsl:template match="/*">
        <xsl:copy>
            <xsl:copy-of select="*"/>
            <item>
                <xsl:value-of select="$message" />
            </item>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

它 /nearly/ 我所要求的,除了它“忘记”了根元素的属性。我在 stackoverflow 和其他地方找到了许多其他解决方案,这些解决方案与我的解决方案有共同之处,即它们失去了根元素的属性。我该如何解决?

4

1 回答 1

1

您当前仅转换子节点,而不是属性。

<xsl:template match="root">
    <xsl:copy>
        <xsl:copy-of select="node()|@*"/> <!-- now does attrs too -->
        <item>
            <xsl:value-of select="$message" />
        </item>
    </xsl:copy>
</xsl:template>
于 2012-08-13T16:41:12.087 回答