我有一个 XSLT,可以完美地从现有的 XML 数据流生成新的 XML。但是,根元素列出了几个属性,当这些属性存在时会导致 XSLT 无法解析数据。
我需要对 XSLT 进行哪些更改才能使其忽略这些属性?
这是根元素:
<CrystalReport xmlns="urn:crystal-reports:schemas:report-detail"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:crystal-reports:schemas:report-detail
http://www.businessobjects.com/products/xml/CR2008Schema.xsd">
如果我只是删除 XSLT 运行良好的属性。如果它们存在,它将忽略整个文件。
您需要查看我的 XSLT 以提供帮助吗?
这是 XSLT。(我可以修改 XSLT 以简单地忽略名称空间吗?):
<?xml version="1.0"?><!-- DWXMLSource="STX050 Course Descriptions Parsed.xml" -->
<!DOCTYPE xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="no"/>
<xsl:key name="courses-by-title" match="Details" use="Section/DEPTSDESC1" />
<xsl:template match="CrystalReport">
<crystalreports>
<xsl:for-each select="Details[count(. | key('courses-by-title', Section/DEPTSDESC1)[1]) = 1]">
<xsl:sort select="Section/DEPTSDESC1" />
<department>
<Sectiontitle><xsl:value-of select="Section/DEPTSDESC1"/></Sectiontitle><xsl:text>
</xsl:text>
<xsl:for-each select="key('courses-by-title', Section/DEPTSDESC1)">
<xsl:sort select="Section/DEPTSDESC1" />
<Details>
<course><xsl:value-of select="Section/DEPTSDESC1"/></course><xsl:text> </xsl:text><courseno><xsl:value-of select="Section/CRSNO1"/></courseno><xsl:text>
</xsl:text><class><xsl:value-of select="Section/CRSTITLE1"/></class><xsl:text>
</xsl:text><classcredit><xsl:value-of select="Section/CRSMINCRED1"/></classcredit><xsl:text> credit hours
</xsl:text><description><xsl:value-of select="Section/CRSDESC1"/></description>
</Details><xsl:text>
</xsl:text>
</xsl:for-each>
</department>
</xsl:for-each>
</crystalreports>
</xsl:template>
</xsl:stylesheet>