0

我有一个 XSD、XML 和 XSLT 文件。

(简化)XML:

<project
xmlns="SYSTEM"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="SYSTEM schema.xsd">

<property name="name1" value="value1">
<property name="name2" value="value2">
</project>

在我的 XSLT 中,我需要为<project>使用<xsl:for-each标签中的每个元素执行转换。但是只有当xmlns, xmlns:xsixsi:schemaLocation<project>. (我当然在没有这些属性的情况下对其进行了测试,并且效果很好。)

这是错误的结果:

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

这是我的 xslt 文件:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/">
            <project>
            <xsl:for-each select="project/*">
                <property>
                    <xsl:attribute name="name"><xsl:value-of select="@name"/></xsl:attribute>
                    <xsl:attribute name="value"><xsl:value-of select="@value"/></xsl:attribute>
                </property>
            </xsl:for-each>
        </project>
    </xsl:template>
</xsl:stylesheet>

我的 xsd 文件的最上面几行:

    <?xml version="1.0"?>
    <xs:schema
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="SYSTEM" xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
    targetNamespace="SYSTEM"
    elementFormDefault="qualified"
    vc:minVersion="1.1">

    <xs:element name="project">
4

1 回答 1

1

您的 XML 有一个默认命名空间。所以你的 XSLT 需要用一些前缀来定义它。当您引用任何元素时,您需要添加该名称空间前缀。我用过xmlns:a="SYSTEM"

请看下文。

XSLT

<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:a="SYSTEM">

<xsl:template match="/">
    <xsl:value-of select="a:project/a:property"/>
</xsl:template>

</xsl:stylesheet>
于 2020-05-11T15:22:08.827 回答