我有一个 XML 文件:
<?xml version="1.0" encoding="utf-8" ?>
<root>
<child>
<gc>gc1Value</gc>
</child>
<child>child2Value</child>
<child>
<gc>gc2Value</gc>
<gc>gc3Value</gc>
<gc>
<ggc>ggcValue</ggc>
<ggc>ggcValue</ggc>
</gc>
</child>
</root>
和一个 Xslt 文件:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<root>
<xsl:for-each select="root/child">
<xsl:if test=".!=''">
<value>
<xsl:value-of select="."/>
</value>
</xsl:if>
<xsl:for-each select="root/child/gc">
<xsl:if test=".!=''">
<value>
<xsl:value-of select="."/>
</value>
</xsl:if>
<xsl:for-each select="root/child/gc/ggc">
<xsl:if test=".!=''">
<value>
<xsl:value-of select="."/>
</value>
</xsl:if>
</xsl:for-each>
</xsl:for-each>
</xsl:for-each>
</root>
</xsl:template>
</xsl:stylesheet>
我期待看到这样的结果:
<root>
<value>gc1Value</value>
<value>child2Value</value>
<value>gc2Value</value>
<value>gc3Value</value>
<value>ggcValue</value>
<value>ggcValue</value>
</root>
但我得到了这个结果:
<?xml version="1.0" encoding="utf-8"?>
<root>
<value>
gc1Value
</value>
<value>child2Value</value>
<value>
gc2Value
gc3Value
ggcValue
ggcValue
</value>
</root>
我认为通过使用.
for select 这只会选择当前节点的值,但它似乎也从子节点获取值。我应该怎么做?