How Would You Make A Two Column Table With Twig?(你会如何用 Twig 制作一个两列的表?)
问题描述
我这辈子都不知道如何在 Twig 循环中的每个 OTHER 迭代中添加一个 </tr><tr>
.
I can't for the life of me figure out how to add a </tr><tr>
every OTHER iteration in a Twig loop.
例如:
$numArray = array(12,13,14,15,16,17,18);
传递给树枝,我会循环一个表格:
Passed to twig, I would loop a table like:
<table>
{% for num in numArray %}
<tr>
<td>
{{num}}
</td>
</tr>
{% endfor %}
</table>
这将输出:
+-----------+
| 12 |
+-----------+
| 13 |
+-----------+
| 14 |
+-----------+
| 15 |
+-----------+
| 16 |
+-----------+
| 17 |
+-----------+
| 18 |
+-----------+
我想做的是得到这样的东西:
What I'd like to do is get something like this:
+-----------+-----------+
| 12 | 13 |
+-----------+-----------+
| 14 | 15 |
+-----------+-----------+
| 16 | 17 |
+-----------+-----------+
| 18 | |
+-----------+-----------+
但我终其一生都想不出一种方法来将我的行输入与任何看起来不老套的东西交替.老实说,我什至无法工作.有办法吗?或者,我是否应该编写自己的扩展程序?
But I can't for the life of me figure out a way to alternate my row input with anything that doesn't seem hacky. Honestly I can't even get hacky to work. Is there a method for this? Or, should I be looking to write my own extension?
推荐答案
正确的做法是使用 batch 过滤器.它是 1.12.3 中的新功能.
The proper way of doing this is using the batch filter. It is new in 1.12.3.
<table>
{% for row in numArray|batch(2) %}
<tr>
{% for column in row %}
<td>{{ column }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
参考:http://twig.sensiolabs.org/doc/filters/batch.html
这篇关于你会如何用 Twig 制作一个两列的表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:你会如何用 Twig 制作一个两列的表?
基础教程推荐
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01