gpt4 book ai didi

xml - XSLT:如何生成每行 3 个单元格的 HTML 表格

转载 作者:数据小太阳 更新时间:2023-10-29 02:53:27 27 4
gpt4 key购买 nike

我按照 this post from StackOverflow 的说明生成了一个每行 2 个单元格的 HTML 表格

但我想将我的数据分布在一个 HTML 表格中,每行三个单元格。我更改了帖子中 XSLT 样式表中 sibling 的数字和 position 的计算,但它似乎不起作用。

这是我的 XML 源:

<?xml version="1.0" encoding="UTF-8"?>
<report>
<frontmatter>
<title>Relatório da 4ª Sessão Intercalar</title>
<subtitle>Projecto Integrado de Engenharia de Linguagens</subtitle>

<authors>
<author>
<name>Marina Mac</name>
<nident>pg999</nident>
<email>pg999@minho.pt</email>
<url>https://www.linkedin.com</url>
<affil>Universidade do Minho</affil>
<photo>source/img/authors/marina.png</photo>
</author>
<author>
<name>Nuno Vie</name>
<nident>pg998</nident>
<email>pg998@minho.pt</email>
<url>https://www.linkedin.com</url>
<photo>source/img/authors/nuno.jpg</photo>
<affil>Universidade do Minho</affil>
</author>
<author>
<name>Damien Va</name>
<nident>pg997</nident>
<photo>source/img/authors/damien.jpg</photo>
<url>https://www.linkedin.com</url>
<email>pg997@minho.pt</email>
<affil>Universidade do Minho</affil>
</author>
<author>
<name>Tiago Mach</name>
<nident>pg996</nident>
<email>pg996@minho.pt</email>
<url>https://www.linkedin.com</url>
<affil>Universidade do Minho</affil>
<photo>source/img/authors/marina.png</photo>
</author>
<author>
<name>Manuel Vie</name>
<nident>pg995</nident>
<email>pg995@minho.pt</email>
<url>https://www.linkedin.com</url>
<photo>source/img/authors/nuno.jpg</photo>
<affil>Universidade do Minho</affil>
</author>
<author>
<name>Damien Vim</name>
<nident>pg994</nident>
<photo>source/img/authors/damien.jpg</photo>
<url>https://www.linkedin.com</url>
<email>pg994@alunos.uminho.pt</email>
<affil>Universidade do Minho</affil>
</author>
</authors>
</frontmatter>
</report>

这是我的 XSLT 代码,它不符合我的要求:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs" version="2.0">

<xsl:output indent="yes"/>

<xsl:template match="/report">
<html>
<head>
<meta charset="utf-8"/>
<title><xsl:value-of select="frontmatter/title"/></title>
</head>
<body>
<xsl:apply-templates select="frontmatter"/>
</body>
</html>
</xsl:template>

<xsl:template match="frontmatter" >
<table width="100%">
<tr align="center">
<td>
<h1><xsl:value-of select="title"/></h1>
</td>
</tr>
<xsl:if test="subtitle != '' ">
<tr align="center">
<td>
<xsl:value-of select="subtitle"/>
</td>
</tr>
</xsl:if>
</table>
<hr width="90%"/>
<h2>Autores</h2>
<table width="90%" align="center">
<xsl:apply-templates select="authors/author[position() mod 2 = 1]"/>
</table>
</xsl:template>

<xsl:template match="authors/author">
<tr>
<xsl:for-each select=". | following-sibling::author[1]" >
<td>
<p><xsl:value-of select="name"></xsl:value-of></p>
</td>
</xsl:for-each>
<xsl:if test="not(following-sibling::author)">
<td/>
<td/>
</xsl:if>
</tr>
</xsl:template>

</xsl:stylesheet>

如何修复我的样式表,使其生成每行 3 个单元格的 HTML 表格?

最佳答案

如果您有 6 位作者,我假设您期望这样的结果:

  <table width="90%" align="center" border="1">
<tr>
<td>Marina Machado</td>
<td>Damien Vaz</td>
<td>Manuel Vieira</td>
</tr>
<tr>
<td>Nuno Vieira</td>
<td>Tiago Machado</td>
<td>Damien Vaz</td>
</tr>
</table>

如果您有三位或更多作者,您将始终拥有三列。列少于三列的唯一情况是您有零个、一个或两个作者。这些列将从从左到右填充,因此如果您有 7 位作者,则最后一行第一列中只有一位作者。

这将是五位作者的结果:

  <table width="90%" align="center" border="1">
<tr>
<td>Marina Machado</td>
<td>Damien Vaz</td>
<td>Manuel Vieira</td>
</tr>
<tr>
<td>Nuno Vieira</td>
<td>Tiago Machado</td>
</tr>
</table>

如果有七个,将创建一个新行:

  <table width="90%" align="center" border="1">
<tr>
<td>Marina Machado</td>
<td>Damien Vaz</td>
<td>Manuel Vieira</td>
</tr>
<tr>
<td>Nuno Vieira</td>
<td>Tiago Machado</td>
<td>William Shakespeare</td>
</tr>
<tr>
<td>Heitor Villa-Lobos</td>
</tr>
</table>

在给定源 XML 的情况下,您可以使用此样式表生成满足这些要求的 HTML 表格(我将其缩减为代码的基本部分以处理分组问题 - 您稍后可以重新适应你的代码):

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:param name="cols">3</xsl:param> <!-- set the number of rows here -->

<xsl:template match="frontmatter" >
<table width="90%" align="center" border="1">
<xsl:apply-templates select="authors/author[position() mod $cols = 1 or position() = 1]" mode="row"/>
</table>
</xsl:template>

<xsl:template match="authors/author" mode="row">
<tr>
<xsl:apply-templates select=". | following-sibling::author[position() &lt; $cols]" mode="cell"/>
</tr>
</xsl:template>

<xsl:template match="authors/author" mode="cell">
<td>
<xsl:value-of select="name"/>
</td>
</xsl:template>

</xsl:stylesheet>

如果您决定将作者分布在不同数量的列中,您可以传递 cols参数具有不同的值或替换参数中的值 <xsl:param name="cols">3</xsl:param>与另一个值(value)。例如,如果您将其更改为 4 列,它将像这样分布您的作者:

<table width="90%" align="center" border="1">
<tr>
<td>Marina Machado</td>
<td>Nuno Vieira</td>
<td>Damien Vaz</td>
<td>Tiago Machado</td>
</tr>
<tr>
<td>Manuel Vieira</td>
<td>Damien Vaz</td>
</tr>
</table>

在这个模板中计算行数:

<xsl:template match="frontmatter" >
<table width="90%" align="center" border="1">
<xsl:apply-templates select="authors/author[position() mod $cols = 1 or position() = 1]" mode="row"/>
</table>
</xsl:template>

XPath 表达式选择其位置 除以列数余数为 1 的作者。对于三列,它将选择 <author> elements number 1, 4, 7, 10, ... 它还将选择 last 元素(可能不是其中之一)。它将调用第一个 author标有 mode="row" 的模板.

该模板选择将包含每行单元格数据的元素:

<xsl:template match="authors/author" mode="row">
<tr>
<xsl:apply-templates select=". | following-sibling::author[position() &lt; $cols]" mode="cell"/>
</tr>
</xsl:template>

它将选择当前 author ( . ),以及距离 $cols 的以下 sibling - 1. 如果$cols是3,那么它会选择当前的author和接下来的两个authors如果它们存在。这样,它将选择将放置在一行中的所有元素。例如,如果之前的模板选择了元素 1 和 4(3 列),则此模板将为第一列选择元素 1(当前)、2 和 3,为第二列选择元素 4(当前)、5 和 6。此选择将用于应用 mode="cell"仅打印 name 的模板<td> 中作者的子元素 block 。

此解决方案适用于 XSLT 1.02.0。

您可以看到在这个 XSLT Fiddle 中工作的代码

关于xml - XSLT:如何生成每行 3 个单元格的 HTML 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24252603/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com