我有一个 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:xsi
我xsi: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">