我有下面的XML文件:如何在變體定義標籤
<?xml version="1.0"?>
<Table69>
</Table69>
而且要讀元素「Table69」的身體,我已經使用以下XSL文件:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"/>
<xsl:template match="/">
<xsl:variable name="table" >
<xsl:choose>
<xsl:when test="normalize-space(.) != ''" >
<xsl:value-of select="." />
</xsl:when>
<xsl:otherwise>
<Exception>
field was missing
</Exception>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<Table id="69">
<xsl:value-of select="$table" />
</Table>
</xsl:template>
</xsl:stylesheet>
問題是:當xml文件包含Table69 tage下的值時,此值會成功打印,但是; 當此標記不包含一個值,在xsl vairalbe「表」應包含以下內容:
<Exception>
field was missing
</Exception>
但是,它不包括踏歌,這裏是改造的樣本結果:
<?xml version="1.0"?>
<Table id="69">
field was missing <!-- where's the Exception tag surrounding the text field was missing ??? -->
</Table>
不幸的是,value-of仍將輸出將省略節點的文本值。 – Thiyagaraj