我有以下一段 XML:
<?xml version="1.0"?>
<document xmlns="http://cnx.rice.edu/cnxml" xmlns:md="http://cnx.rice.edu/mdml" id="new" cnxml-version="0.7" module-id="new">
<metadata xmlns:md="http://cnx.rice.edu/mdml"
mdml-version="0.5">
<md:abstract>By the end of this section, you will be able to:
<list>
<item>Discuss the role of homeostasis in healthy functioning</item>
<item>Contrast negative and positive feedback, giving one physiologic example of each mechanism</item>
</list>
</md:abstract>
我需要将模板应用于md:abstract元素。我有以下 XSL 代码:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:md="http://cnx.rice.edu/mdml/0.4">
<xsl:output omit-xml-declaration="yes" encoding="ASCII"/>
<xsl:template match="c:document">
<body>
<xsl:apply-templates select="c:metadata"/>
<xsl:apply-templates select="c:content"/>
</body>
</xsl:template>
<xsl:template match="c:metadata">
<xsl:apply-templates select="md:abstract"/>
</xsl:template>
<xsl:template match="md:abstract">
<xsl:apply-templates select="@*|node()"/>
</xsl:template>
但是,不幸的是,它没有捕获md:abstract元素。我想不通,想要是错的。