采用ejs制作一个具有分页功能的表格组件
时间: 2023-11-22 20:51:43 浏览: 193
通过自定义标签,简化dwz table分页
4星 · 用户满意度95%
首先,需要安装`ejs`模板引擎。可以通过以下命令进行安装:
```
npm install ejs
```
然后可以创建一个`table.ejs`模板文件,用于渲染表格组件,其中包括分页功能。
```html
<table>
<thead>
<tr>
<% headers.forEach(function(header) { %>
<th><%= header %></th>
<% }); %>
</tr>
</thead>
<tbody>
<% data.slice(startIndex, endIndex).forEach(function(row) { %>
<tr>
<% row.forEach(function(item) { %>
<td><%= item %></td>
<% }); %>
</tr>
<% }); %>
</tbody>
</table>
<div class="pagination">
<% if (currentPage > 1) { %>
<a href="<%= url %>?page=<%= currentPage - 1 %>">上一页</a>
<% } %>
<% for (var i = 1; i <= totalPages; i++) { %>
<% if (i === currentPage) { %>
<span><%= i %></span>
<% } else { %>
<a href="<%= url %>?page=<%= i %>"><%= i %></a>
<% } %>
<% } %>
<% if (currentPage < totalPages) { %>
<a href="<%= url %>?page=<%= currentPage + 1 %>">下一页</a>
<% } %>
</div>
```
在模板中,使用了`forEach`函数和`slice`方法分别遍历数据和根据当前页数获取数据的起始和结束位置。同时,使用了一个分页组件,根据当前页数和总页数生成相应的分页链接。
下面是一个使用`table.ejs`模板渲染表格的示例代码:
```javascript
const ejs = require('ejs');
const data = [
['Apple', 'Red', '$2.00'],
['Banana', 'Yellow', '$1.00'],
['Grape', 'Purple', '$3.00'],
['Orange', 'Orange', '$1.50'],
['Pineapple', 'Brown', '$5.00'],
['Watermelon', 'Green', '$4.00']
];
const currentPage = 2;
const itemsPerPage = 2;
const totalPages = Math.ceil(data.length / itemsPerPage);
const startIndex = (currentPage - 1) * itemsPerPage;
const endIndex = startIndex + itemsPerPage;
const headers = ['Fruit', 'Color', 'Price'];
const url = '/table';
const html = ejs.renderFile('table.ejs', { data, headers, startIndex, endIndex, currentPage, totalPages, url });
console.log(html);
```
在这个示例中,数据包括6个水果信息,每页显示2个。当前页为第2页。根据这些信息,计算出总页数、起始位置和结束位置,并将它们传递给模板。最终,使用`ejs.renderFile`方法渲染模板生成HTML字符串,并输出到控制台。
需要注意的是,在实际应用中,数据通常来自数据库或API,而不是硬编码。在这种情况下,需要使用相应的方式获取数据,并将其传递给模板进行渲染。
阅读全文