值必须为QName的属性具有值''

时间:2013-10-15 17:20:28

标签: xml xslt qnames

我有一个XSL文件,不断出现上述错误。这是我的代码:

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml"/>
    <xsl:template match="faculty">
        <xsl:element name='{fname}'>
            <xsl:for-each select="students/name">
                <name>
                    <xsl:value-of select="."/>
                </name>
            </xsl:for-each>
        </xsl:element>
    </xsl:template>
</xsl:stylesheet>

这是我的源XML文件的一部分:

    <faculties xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
        xsi:noNamespaceSchemaLocation='257lab2a.xsd'>
        <faculty>
            <fname>literal arts</fname>
            <students>
                <name>ron dell</name>
                <mark>52</mark>
                <phone number='349-095-9867'></phone>
                <courseCategory category='full time'></courseCategory>
                <courseNo courseNumber='LART433'></courseNo>
            </students>
        </faculty>
    </faculties>

1 个答案:

答案 0 :(得分:1)

这似乎是因为fname包含的文本不是有效的元素名称(不能包含空格)。请尝试以下操作,但请记住,您可能需要解决其他问题,具体取决于您的数据。

<xsl:template match="faculty">
    <xsl:element name="{translate(fname, ' ', '_')}">
        <xsl:for-each select="students/name">
            <name>
                <xsl:value-of select="."/>
            </name>
        </xsl:for-each>
    </xsl:element>
</xsl:template>