0

我正在尝试使用 Saxon-ce 设置一个组合框,其值过滤 xml 中项目的显示。这是我到目前为止的代码示例。

<xsl:stylesheet version="2.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
xmlns:ext="http://exslt.org/common" 
xmlns:ixsl="http://saxonica.com/ns/interactiveXSLT"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
extension-element-prefixes="ixsl">

<xsl:template match="/">
    <!-- set up combo box -->
<xsl:result-document href="#typeControl">
    <xsl:text>Type: </xsl:text>
    <select class="menuSub_monster" id="typeBox">
        <option value="all" selected="'all'">Unsorted</option>
        <option value="group">Sorted</option>
        <option value="value1">Value1</option>
        <option value="value2">Value2</option>
    </select>
</xsl:result-document>

<!-- inital display -->
<xsl:call-template name="displayTemplates">
    <xsl:with-param name="typeSel" select="'all'"/>
</xsl:call-template>
</xsl:template>

<!-- Change display when we change combo box -->
<xsl:template match="select[@id='typeBox']" mode="ixsl:onchange">
<xsl:variable name="control" select="."/>
<xsl:variable name="typeValue" select="ixsl:get($control,'value')" />   

<xsl:call-template name="displayTemplates">
    <xsl:with-param name="typeSel" select="$typeValue"/>
</xsl:call-template>
</xsl:template>

<!-- display routine -->
<xsl:template name="displayTemplates">
<xsl:param name="typeSel"/>
<xsl:result-document href="#display" method="ixsl:replace-content" >
<xsl:choose>
   <xsl:when test="$typeSel='all'">
    <xsl:for-each select="templates/template">
    <xsl:sort select="sort_name"/>
    ... CODE FOR DISPLAY
    </xsl:for-each>
   </xsl:when>
   <xsl:when test="$typeSel='group'">
    ... CODE FOR DISPLAY
   </xsl:when>
   <xsl:otherwise>
    <xsl:for-each select="templates/template/types[type[text()=$typeSel]]">
    <xsl:sort select="../sort_name"/>
            ...CODE FOR DISPLAY
    </xsl:for-each>
   </xsl:otherwise>
</xsl:choose>
</div>  

</xsl:result-document>
</xsl:template> 

我遇到的问题是当组合框更改值时调用模板 displayTemplates 。我到上下文模板/模板的转换不起作用,因为这是我使用此样式表调用的 XML 的一部分。但是, match="select[@id='typeBox']" 将上下文设置为不在 XML 中的对象。如何将我的上下文从组合框更改为我的 XML,以便显示例程中的 for-each 语句正常工作?

4

1 回答 1

0

一种方法:将变量绑定到 XML 中的某个节点,您可以从该节点成功导航到您需要去的地方。然后使用对该变量的引用将上下文移回另一个文档。(可能有更优雅的方式。)

于 2013-08-31T00:48:22.280 回答