0

好吧,我觉得这是一个非常愚蠢的问题,但我已经尝试了一段时间来得到它,所以我的 XSLT 文件会吐出封装在某个任意元素中的输出,我们称之为“根”。我将如何实现这一目标?

如果有帮助的话,这是我当前的 XSLT:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="DCField">
    <xsl:choose>
        <xsl:when test="@FieldValueType='None'">
            <xsl:element name="{Name}">
                <xsl:value-of select="Value" />
            </xsl:element>
        </xsl:when>
        <xsl:otherwise>
            <xsl:element name="{@FieldValueType}">
                <xsl:value-of select="Value" />
            </xsl:element>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
<xsl:template match="text()"/>
</xsl:stylesheet>

我想要它,所以我的输出看起来像:

<root>
    <element1>
    <element2>
    ...
</root>
4

1 回答 1

1

只需将根匹配模板的内容包装在<root>标签中即可。

http://www.xmlplayground.com/RYv2XW(见输出源)

于 2012-06-08T13:44:10.197 回答