我试图用XSLT表示一个表格,输入字段可以是text
或number
。我在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 >= position()]">
<tr>
<xsl:for-each select="(//node())[$cols >= 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"/>
答案 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 >= position()]">
<tr>
<xsl:for-each select="(//node())[$cols >= 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>
我猜您知道如果rowNumber
或colNumber
超过XML中的节点数,您的XSLT将失败。