2013-03-12 84 views
2

我想知道如何根據下面的代碼在變量內模擬模板mach。XSLT:模擬變量內的模板匹配

的這個XSLT代碼的輸出,我想將其存儲在一個變量,在後面的腳本中使用它:

<?xml version="1.0" encoding="utf-8"?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
    <xsl:output method="xml" indent="yes"/> 

    <xsl:template match="*"> 
    <xsl:element name="{local-name(.)}"> 
     <xsl:apply-templates select="@* | node()"/> 
    </xsl:element> 
    </xsl:template> 
    <xsl:template match="@*"> 
    <xsl:attribute name="{local-name(.)}"> 
     <xsl:value-of select="."/> 
    </xsl:attribute> 
    </xsl:template> 
</xsl:stylesheet> 

我能做到這一點,現在通過使用2個XSLT腳本,但我會只喜歡使用一個腳本。

的XSLT腳本應該給予這樣相同的輸出:

<?xml version="1.0" encoding="utf-8"?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
    <xsl:output method="xml" indent="yes"/> 

    <xsl:variable name="InputNew"> 
    <xsl:template match="*"> 
    <xsl:element name="{local-name(.)}"> 
     <xsl:apply-templates select="@* | node()"/> 
    </xsl:element> 
    </xsl:template> 
    <xsl:template match="@*"> 
    <xsl:attribute name="{local-name(.)}"> 
     <xsl:value-of select="."/> 
    </xsl:attribute> 
    </xsl:template> 
    </xsl:variable> 

    <xsl:template match="/"> 
    <xsl:copy-of select="$InputNew"/> 
    </xsl:template> 
</xsl:stylesheet> 

我知道我不能用一個變量裏面的模板匹配,我只能用調用模板,但我無法做到正確的XSLT代碼。

編輯:這裏是工作的腳本:

<xsl:stylesheet version="2.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exclude-result-prefixes="xsl soap xsi"> 
<xsl:output method="xml" version="1.0" encoding="iso-8859-1" indent="yes" omit-xml-declaration="yes"/> 
    <xsl:strip-space elements="*"/> 

    <xsl:template match ="*" mode="stripNs"> 
     <xsl:element name ="{local-name()}" > 
      <xsl:apply-templates select ="@* | node()" mode="stripNs"/> 
     </xsl:element> 
    </xsl:template> 


    <xsl:variable name="noNamespaces"> 
     <xsl:apply-templates select="soap:Envelope/soap:Body/*" mode="stripNs" /> 
    </xsl:variable> 

    <xsl:template match="/"> 
     <!-- Now I can do what I want with the variable $noNamespaces --> 
     <xsl:copy-of select="$noNamespaces"/> 
    </xsl:template> 

</xsl:stylesheet> 
+0

您使用的是哪種XSLT處理器?在幾個XSLT處理器中,可以在變量中捕獲XML樹,然後使用'node-set()'函數與該變量的內容進行交互。 – JLRishe 2013-03-12 15:45:22

+0

嗨,謝謝你的快速反饋!我正在使用撒克遜。 – user2161668 2013-03-12 16:01:23

回答

1

如果你使用的撒克遜人,你應該能夠使用exslt:node-set()功能來做到這一點:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
           xmlns:exslt="http://exslt.org/common"> 
    <xsl:output method="xml" indent="yes"/> 

    <xsl:template match="*" mode="stripNs"> 
    <xsl:element name="{local-name(.)}"> 
     <xsl:apply-templates select="@* | node()" mode="stripNs"/> 
    </xsl:element> 
    </xsl:template> 
    <xsl:template match="@*" mode="stripNs"> 
    <xsl:attribute name="{local-name(.)}"> 
     <xsl:value-of select="."/> 
    </xsl:attribute> 
    </xsl:template> 

    <xsl:template match="/"> 
    <!-- Apply the stripNs templates and capture the result in a variable --> 
    <xsl:variable name="noNamespaces"> 
     <xsl:apply-templates select="*" mode="stripNs" /> 
    </xsl:variable> 

    <!-- Now use the variable --> 
    <xsl:apply-templates select="exslt:node-set($noNamespaces)/*" /> 
    </xsl:template> 
</xsl:stylesheet> 

然後,如果您使用的是撒克遜,您也可以使用XSLT 2.0並使用與上述相同的內容,但不需要在附近使用:

<!-- Now use the variable --> 
<xsl:apply-templates select="$noNamespaces/*" /> 
+0

謝謝@JLRish! – user2161668 2013-03-12 17:08:51