在某些条件下调用模板XSLT和C#

时间:2015-03-23 21:04:24

标签: c# xml winforms xslt

我正在创建一个C#应用程序。应用程序将参数传递给XSLT文件。我想要的是根据组合框中选择的参数调用某个模板。

我正在测试<xsl:call-template />方法,它只显示我的上一个模板,而不是我正在呼叫的模板。我已经阅读了调用模板的功能,但仍然无法正常工作。我正确使用它吗?

 <?xml version="1.0"?><!-- DWXMLSource="lab06.xml" -->
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >    

    <xsl:param name="selectedLanguage">Java</xsl:param>
    <xsl:param name="selectedUse">Application</xsl:param>
    <xsl:key name="language-by-use" match="language" use="purpose/intendedUse/@id" />
    <xsl:param name="selectedStandard">ECMA</xsl:param>
    <xsl:key name="language-by-standard" match="language" use="standards/standard/@id" />

    <xsl:template match="/">
    <xsl:call-template name="intendedUseTemp"/>
    </xsl:template>


<xsl:template match="/" name="intendedUseTemp" >
    <html>
        <body>
            <table border="1">
                <tr>
                    <th>Intended Use</th>
                    <th>Languages</th>
                </tr>
                <tr>
                    <td>
                        <xsl:value-of select="$selectedUse"/>
                    </td>
                    <td>
                        <xsl:for-each select="key('language-by-use', programming/purpose/intendedUse[. =$selectedUse]/@id)" >
                            <xsl:value-of select="name" />
                            <br />
                        </xsl:for-each>
                    </td>

                </tr>
            </table>
        </body>
    </html>
</xsl:template>

<xsl:template match="/" name="standardTemp" >
    <html>
        <body>
            <table border="1">
                <tr>
                    <th>Standard</th>
                    <th>Languages</th>
                </tr>
                <tr>
                    <td>
                        <xsl:value-of select="$selectedStandard"/>
                    </td>
                    <td>
                        <xsl:for-each select="key('language-by-standard', programming/standards/standard[.=$selectedStandard]/@id)" >
                            <xsl:value-of select="name" />
                            <br />
                        </xsl:for-each>
                    </td>
                </tr>
            </table>
        </body>
    </html>
</xsl:template>



    <xsl:template match="/" name="languageTemp">
        <html>

            <body>
                <table border="1">
                    <tr>
                        <th >Programming</th>
                        <th >Intended Use</th>
                        <th style="text-align:left">Standards</th>
                    </tr>


                    <xsl:for-each select="programming/languages/language[name=$selectedLanguage]">
                        <tr>
                            <td><xsl:value-of select="name"/></td>
                            <td><xsl:variable name="intendedUseID" select="purpose/intendedUse/@id" />
                                <xsl:for-each select="/programming/purpose/intendedUse[@id=$intendedUseID]" >
                                    <xsl:value-of select="." /> <br  />
                                </xsl:for-each></td>
                            <td>   <xsl:variable name="standardID" select="standards/standard/@id" />
                                <xsl:for-each select="/programming/standards/standard[@id=$standardID]" >
                                    <xsl:value-of select="." /> <br />
                                </xsl:for-each></td>
                        </tr>
                    </xsl:for-each>
                </table>

            </body>
        </html>
    </xsl:template>


</xsl:stylesheet>

更新:

我正在尝试将参数传递给call-template,但它不起作用。我是否混淆了参数和调用模板的使用?我可以将它传递给变量吗?我的计划是使用<xsl:if>将我的C#应用​​程序中的参数传递给XSLT

<xsl:param name="selectedLanguage">Java</xsl:param>
<xsl:param name="selectedUse">Application</xsl:param>
<xsl:param name="selectedStandard">ECMA</xsl:param>
<xsl:param name="selectedBox">languageTemp</xsl:param>

<xsl:key name="language-by-use" match="language" use="purpose/intendedUse/@id" />
<xsl:key name="language-by-standard" match="language" use="standards/standard/@id" />



<xsl:template match="/">
    <xsl:call-template name="$selectedBox"/>
</xsl:template>

1 个答案:

答案 0 :(得分:1)

你已经找到了XSLT的一个奇怪的语义“特性”。通常情况下,xsl:template将具有match属性或name属性,以指示何时应用该属性。这种情况很少见,但它可以兼得,但这意味着 namematch可以触发应用程序。

在您的情况下,每个模板都有match="/"。那么,在进入时,XSLT如何决定选择哪些模板?你期望它使用第一个,但它们都具有相同的优先级,因此XSLT中的打破平局规则是使用遇到的 last

<强>更新 关于你的更新问题。是的,您可以将参数传递给命名模板,它看起来像这样:

<!-- the named template -->
<xsl:template name="xyzzy">
    <xsl:param name="plugh"/>
    <!-- do something here with $plugh -->
</xsl:template>

<xsl:template match="some-node">
    <-- calling the template named xyzzy -->
    <xsl:call-template name="xyzzy">
        <xsl:with-param name="plugh" select="child-node"/>
    </xsl:call-template>
</xsl:template>