我有一个XML,我正在使用XSLT将其转换为HTML。当前的表结构如下。
|-------------------------|
|type |name |age |
|data |john |28 |
|comment |pass | |
|-------------------------|
我正在尝试合并行的单元格,其中col0 =' comment'只有两个TD。第一个TD评论'和第二个TD通过'通过'。我将在第二个TD中添加colspan = 2。
我正在尝试从Code下面生成以下表结构。 (带有Pass的td将具有colsapn = 2)
|-------------------------|
|type |name |age |
|data |john |28 |
|comment |pass |
|-------------------------|
XML示例数据如下。
<Form>
<Log>
<col0>type</col0>
<col1>name</col1>
<col2>age</col2>
</Log>
<Log>
<col0>data</col0>
<col1>john</col1>
<col2>28</col2>
</Log>
<Log>
<col0>comment</col0>
<col1>passed</col1>
<col2></col2>
</Log>
</Form>
我使用下面的XSLT代码进行转换。但它没有产生预期的结果。这部分是更大的XML,所以我只提供所需的代码。
代码如下。我删除了与该问题无关的代码的其他部分。
<xsl:for-each select="Form">
-- Another code for Log position 1
<xsl:apply-templates select="Log[position() > 1]" mode="LogsData" />
</xsl:for-each>
<xsl:template match="Form/*" mode="LogsData">
<xsl:choose>
<xsl:when test="name()='col0' and text()='Comments'">
<tr>
<td>
<b>
<xsl:value-of select="name() = 'col0' and text()='comment'"/>
</b>
</td>
<td>
<xsl:for-each select="*[starts-with(name(), 'col')]">
<xsl:value-of select="." />
</xsl:for-each>
</td>
</tr>
</xsl:when>
<xsl:otherwise>
<tr>
<xsl:for-each select="*[starts-with(name(), 'col')]">
<xsl:choose>
<xsl:when test="name() = 'col0'">
<td>
<b>
<xsl:value-of select="." disable-output-escaping="yes"/>
</b>
</td>
</xsl:when>
<xsl:otherwise>
<td>
<xsl:value-of select="." disable-output-escaping="yes"/>
</td>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</tr>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
结果未按预期生成。桌子仍然是现在的样子。每个评论数据单独的TD。 我只想在评论部分看到两个TD。首先是TD&#34;评论&#34;在它和第二个TD中,除了col0之外的所有其他列的值。 请帮我解决这个问题。
答案 0 :(得分:1)
如果我猜对了,你想制作第二个模板:
<xsl:template match="Log" mode="LogsData">
<tr>
<xsl:choose>
<xsl:when test="*[1]='comment'">
<th>Comments</th>
<td colspan="{count(*) -1}">
<xsl:for-each select="*[position() > 1]">
<xsl:value-of select="." />
</xsl:for-each>
</td>
</xsl:when>
<xsl:otherwise>
<th>
<xsl:value-of select="*[1]" />
</th>
<xsl:for-each select="*[position() > 1]">
<td>
<xsl:value-of select="." />
</td>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</tr>
</xsl:template>