我有一個XML文件:XSLT無法正常運行
<?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>
我認爲通過使用.
作爲選擇,這隻會選擇當前節點的值,但它似乎也從兒童獲得值。我該怎麼做呢?
謝謝!這很好。 – khr055