XSLT否则循环不能正常工作

时间:2017-09-27 15:09:28

标签: xml xslt xpath xslt-1.0

我试图用XSLT表示一个表格,输入字段可以是textnumber。我在XML中有一个包含列和行号的标记。进入headerName标记,我有表格的标题信息。

这是我的XML示例:

<elements>
       <element type="TABLE">
            <id>table2</id>
            <order>49</order>
            <table>
                <colNumber>2</colNumber>
                <headerName>
                    <amount>false</amount>
                    <value>Header1</value>
                </headerName>
                <headerName>
                    <amount>true</amount>
                    <value>Header2</value>
                </headerName>
                <rowNumber>2</rowNumber>
            </table>
        </element>
</elements>

现在,我使用的XSLT是:

<xsl:for-each select="elements/element">
    <xsl:if test="@type='TABLE'">
        <div data-order="{order}" id="{id}">
            <table class="table table-bordered mt-lg">
                <thead>
                    <tr>
                        <xsl:for-each select="table/headerName">
                            <td>
                                <xsl:value-of select="value"/>
                            </td>
                        </xsl:for-each>
                    </tr>
                </thead>
                <tbody>
                    <xsl:variable name="rows" select="table/rowNumber/text()"/>
                    <xsl:variable name="cols" select="table/colNumber/text()"/>
                    <xsl:variable name="amount" select="table/headerName/amount/text()"/>
                    <xsl:for-each select="(//node())[$rows &gt;= position()]">
                        <tr>
                            <xsl:for-each select="(//node())[$cols &gt;= position()]">
                                <td>
                                    <xsl:choose>
                                        <xsl:when test="$amount = 'false'">
                                            <input type="text"/>
                                        </xsl:when>
                                        <xsl:otherwise>
                                            <input type="number"/>
                                        </xsl:otherwise>
                                    </xsl:choose>
                                </td>
                            </xsl:for-each>
                        </tr>
                    </xsl:for-each>
                </tbody>
            </table>
        </div>
    </xsl:if>
</xsl:for-each>

我的预期输出是:

<div data-order="49" id="table2">
    <table class="table table-bordered mt-lg">
        <thead>
            <tr>
                <td>
                    Header1
                </td>
                <td>
                    Header2
                </td>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td><input type="text"></input></td>
                <td><input type="number"></input></td>
            </tr>
            <tr>
                <td><input type="text"></input></td>
                <td><input type="number"></input></td>
            </tr>
        </tbody>
    </table>
</div>

我没有看到错误在哪里,我尝试过使用xpath表达式,但我总是得到<input type="text"/>

1 个答案:

答案 0 :(得分:2)

当你在amount语句之前设置变量xsl:for-each时,它只会被设置为XML中第一个table/headerName的值你真的需要在最内部xsl:for-each内移动声明,因为它看起来像是要根据当前列号设置它。

但是,您需要考虑到此时您不会被element元素定位,因此您需要先在变量中存储对element的引用,所以你可以在xsl:for-each

里面访问它

试试这个XSLT片段

<tbody>
    <xsl:variable name="rows" select="table/rowNumber/text()"/>
    <xsl:variable name="cols" select="table/colNumber/text()"/>
    <xsl:variable name="node" select="." />
    <xsl:for-each select="(//node())[$rows &gt;= position()]">
        <tr>
            <xsl:for-each select="(//node())[$cols &gt;= position()]">
                <xsl:variable name="position" select="position()" />
                <xsl:variable name="amount" select="$node/table/headerName[position() = $position]/amount/text()"/>
                <td>
                    <xsl:choose>
                        <xsl:when test="$amount = 'false'">
                            <input type="text"/>
                        </xsl:when>
                        <xsl:otherwise>
                            <input type="number"/>
                        </xsl:otherwise>
                    </xsl:choose>
                </td>
            </xsl:for-each>
        </tr>
    </xsl:for-each>
</tbody>

我猜您知道如果rowNumbercolNumber超过XML中的节点数,您的XSLT将失败。