這裏是我處理XML:我需要適應與第二結構爲什麼這個XSL模板無效?
<xsl:template match="/">
<xsl:call-template name="CustomTemplate"/>
</xsl:template>
<xsl:template name="CustomTemplate">
<xsl:template match="Row">
<xsl:value-of select="@ID"/>
</xsl:template>
</xsl:template>
:
<dsQueryResponse>
<Rows>
<Row ID="14"></Row>
</Rows>
</dsQueryResponse>
這XSL工作:
<xsl:template match="Row">
<xsl:value-of select="@ID"/>
</xsl:template>
但沒有這一項,製作一個調用模板,有沒有人知道第二個XSL中需要改變什麼?
XSL模板不能嵌套。請編輯你的文章,以顯示你想輸出給定的輸入XML。 –