我需要获取c:batch节点的每个子节点。 < xsl:template match =" s-20">与节点不匹配。我做错了什么?任何帮助赞赏。 Thanx很多提前。
<?xml version="1.0" encoding="UTF-8"?>
<c:batch xmlns:a="http://www.test.com/data/6/archive"
xmlns:i="http://www.test.com/data/6/archive/import"
xmlns="http://www.test.com/dos/asap"
xmlns:n1="http://www.test.com/dos"
xmlns:c="http://www.test.com/data/6/capture">
<s-20 file="00000001.pdf" checked="true">
<code>X12345</code>
<type>data</type>
</s-20>
<s-20 file="00000002.pdf" checked="false">
<code>X67890</code>
<type>data</type>
</s-20>
<s-20 file="00000003.pdf" checked="true">
<code>X87687</code>
<type>data</type>
</s-20>
</c:batch>
&#13;
样式表:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:a="http://www.test.com/data/6/archive"
xmlns:i="http://www.test.com/data/6/archive/import"
xmlns="http://www.test.com/dos/asap"
xmlns:n1="http://www.test.com/dos"
xmlns:c="http://www.test.com/data/6/capture">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<xsl:element name="Documents">
<xsl:value-of select="count(s-20)"/>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<xsl:template match="s-20">
<xsl:value-of select="code"/>
</xsl:template>
</xsl:stylesheet>
&#13;
答案 0 :(得分:0)
您的<s-20>
位于命名空间中:
xmlns="http://www.test.com/dos/asap"
要匹配它们,请在XSLT中使用显式命名空间,例如:添加行
xmlns:t="http://www.test.com/dos/asap"
到您的XSLT中的<xsl:stylesheet>
根元素,并在匹配规则前加上t:
。也可以在xsl:copy-of
模板中使用xsl:value-of
代替s-20
。然后将所有s-20
元素复制到输出中。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:a="http://www.test.com/data/6/archive"
xmlns:i="http://www.test.com/data/6/archive/import"
xmlns:t="http://www.test.com/dos/asap"
xmlns:n1="http://www.test.com/dos"
xmlns:c="http://www.test.com/data/6/capture">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/c:batch">
<xsl:element name="Documents">
<xsl:value-of select="count(t:s-20)"/>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<xsl:template match="t:s-20">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>
<强>输出:强>
<?xml version="1.0"?>
<Documents>3
<s-20 xmlns:a="http://www.test.com/data/6/archive" xmlns:i="http://www.test.com/data/6/archive/import" xmlns="http://www.test.com/dos/asap" xmlns:n1="http://www.test.com/dos" xmlns:c="http://www.test.com/data/6/capture" file="00000001.pdf" checked="true">
<code>X12345</code>
<type>data</type>
</s-20>
<s-20 xmlns:a="http://www.test.com/data/6/archive" xmlns:i="http://www.test.com/data/6/archive/import" xmlns="http://www.test.com/dos/asap" xmlns:n1="http://www.test.com/dos" xmlns:c="http://www.test.com/data/6/capture" file="00000002.pdf" checked="false">
<code>X67890</code>
<type>data</type>
</s-20>
<s-20 xmlns:a="http://www.test.com/data/6/archive" xmlns:i="http://www.test.com/data/6/archive/import" xmlns="http://www.test.com/dos/asap" xmlns:n1="http://www.test.com/dos" xmlns:c="http://www.test.com/data/6/capture" file="00000003.pdf" checked="true">
<code>X87687</code>
<type>data</type>
</s-20>
</Documents>