- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
您好,我正在尝试使用具有宽度算法的 Twig 和 Bootstrap 创建照片库。例子:我希望它清晰,每个部分都用较粗的黑线分隔。
所以我尝试了很多事情,但现在看来我接近解决方案但它仍然无法正常工作这是我的代码 atm:
<section>
<div class="row row-no-gutter">
{% setcontent miniaanbod = "aanbod" %}
{% for items in miniaanbod|reverse %}
{% set cols = 3 %}
{% set totaal = miniaanbod|length %}
{# this is the beginning. #}
{% if totaal - cols <=0 %} {# if the total is less than 0 it means it is 1 or 2. so my colwidht would be or 6 or 12 #}
{% set colwidth = 12/totaal %} {# expected that totaal is 1 or 2 here #}
{% else %}
{% set totaal = totaal - cols %} {# expected that if the totaal is 4 it takes of 3 and goes back to the begining with 1. so the first IF statement can catch it. #}
{% set colwidth = 12/3 %} {# expected that totaal is 3 here so most likely I can just do 12/3 so I did that #}
{% endif %}
{#{{ dump(colwidth) }}#}
<div class="col-sm-6 col-md-{{ colwidth }}">
<div class="product">
<img src="{{ image(items.gallerij[0].filename, 1620, 880) }}" alt="">
<div class="product__cnt">
<h5 class="uppercase">{{ items.type }}</h5>
<ul class="pricing-table">
<li>Prijs : <span class="price">{{ items.prijs }}</span></li>
</ul>
<span class="link"><a href="/aanbod/{{ items.slug }}">Continue</a></span>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
它的作用是将所有图片更改为 col-md-4
但它应该做的是在每 3 个元素之后它必须返回到 if
的开头> 声明。但我似乎无法重新开始。我还尝试将另一个 for
循环放在另一个 for
循环中,让它在每个元素之后返回到开头,但它总是创建 col-md- 12
因为它一次只有一项。
最佳答案
经过 2 小时的反复尝试。我终于创建了解决方案。
<section>
<div class="row row-no-gutter">
{% setcontent miniaanbod = "aanbod" %}
{% set teller4 = 0 %}
{% set teller6 = 0 %}
{% set breedte = 0 %}
{% set alles = miniaanbod|length %}
{% for item in miniaanbod|reverse %}
{% if (alles >= 3 ) or (teller4 is not divisible by(3)) %}
{% set breedte = 4 %}
{% set teller4 = teller4 + 1 %}
{% set alles = alles - 1 %}
{% elseif (alles > 1) or (teller6 is not divisible by(2)) %}
{% set breedte = 6 %}
{% set teller6 = teller6 + 1 %}
{% set alles = alles - 1 %}
{% else %}
{% set breedte = 12 %}
{% set alles = alles - 1 %}
{% endif %}
<div class="col-sm-6 col-md-{{ breedte }}">
<div class="product">
<img src="{{ image(item.gallerij[0].filename, 1620, 880) }}" alt="">
<div class="product__cnt">
<h5 class="uppercase">{{ item.type }}</h5>
<ul class="pricing-table">
<li>Prijs : <span class="price">{{ item.prijs }}</span></li>
</ul>
<span class="link"><a href="/aanbod/{{ item.slug }}">Continue</a></span>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
这非常有效,并且已经过测试。我希望这对其他人有用。稍后
关于html - Bootstrap 列的 Twig 图片库算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42948021/
Twig 使用 {{ }}、{% %}、{# #} 分隔符。 但是如何在 Twig 模板中显示 {{ }} 呢?我不是在谈论 HTML 转义。 我问这个问题是因为我想在我的 Twig 模板中包含一个
为了转换我的法语 html 口音,我尝试通过在 Twig 中执行此操作来更改编码: {{ ddf.description | convert_encoding('UTF-8', 'HTML-ENTIT
我有一个带有输出元素的 .twig 文件的循环。 我需要为每个元素增加一个值。我知道如何在 PHP 中执行此操作,但不清楚如何使用 twig 文档执行此操作。我真的不能在 Controller 中做到
我有一个 xxx.html.twig 文件,它显示一个页面,但是当我想用不同的数据刷新页面并用新数据更新它时,我有一个选择和一个提交按钮。问题是我不知道如何在 Controller 中调用一个 Act
我需要使用 Liquid 来创建模板,但可能只能访问 Twig 模板语言。这两种语言基本上是相同的东西,还是语言上存在差异,导致很难使用 Twig 来替代 Liquid? 最佳答案 Twig 和 Li
number rounding 的 Twig 文档谈论四舍五入小数,但我有一个案例,我想将 19,995 这样的数字四舍五入到 20,000。是否有一种巧妙的方法可以四舍五入到最接近的千位? 最佳答案
我在 2.7 和 3.1 版本中都有 Symfony 项目。 PhpStorm 启用了 Symfony 插件和 Twig 支持插件。 当我在 Symfony 2.7 版本的 PhpStorm 中工作时
我已升级到新版本的 twig/twig 3.x.x。从 twig 版本 3.0 开始,Twig_Extension 已被弃用。所以我接下来要讨论“whiteoctober/breadcrumbs-bu
我在 Twig 中经常有类似的样板代码: {% if (somelongcond) %} {% endif %} Some long content {% if (somelongcond)
我想在我自己的插件中覆盖来自插件的 Twig 模板的 block 。我过去曾覆盖过 native 商店软件模板,但我在使用插件模板时遇到了麻烦。 我正在尝试调整的插件是 FroshProductCom
我用带 Twig 的silex; 我创建自定义 form_div_layout 并将其放在 webroot 中(例如) 我这样注册 TwigService 提供者 $app->register
我不太明白 Twig 中的属性函数是如何工作的。有人可以帮我举个例子吗? 我在 SQL 中有一个名为动态的字段。我可以是例如“field27”,但我不知道号码,号码保存在 radio.id 中。我想做
我想知道是否有一种方法可以在 TWIG 中创建多语句 示例:两个单独的语句... {% set foo:bar %} {% set baz:qux %} 合并成一个语句 {% set foo:
我正在尝试使用 Twig i18n 扩展。 据我所知,我需要的文件在这里: https://github.com/fabpot/Twig-extensions/blob/master/lib/Twig
我正在使用 patternlab 的节点版本用 Twig 作为模板引擎。我正在使用 twig,因为我的代码库是用 twig 编写的 - 所以使用 mustache 不是一个选项。 我简单地尝试包含一个
我有以下代码: {% set pageDescription = item.description|length > 197 ? item.description|striptags|trim|sli
我有以下 Twig 代码: {% for likeditem in user.getItemLikes() %} //iterate over each liked items here {%
反正有没有像这样在 Twig 中重复一个块: {% block title %}{% endblock %} | MyBusiness 为了只声明两个块一次?像那样: {% block title
编辑:2016年12月3日 想学习如何向 Twig 添加自定义扩展(过滤器)吗?请参阅this answer的lxg 您是否只需要找到与ucword等效的嫩枝?请参阅this answer的Javie
我有一个简单的浮点数组。我需要将它显示为逗号分隔的字符串。 {{ arr|join(', ') }} 由于过度的微不足道的准确性,这是一个糟糕的解决方案。 {% for val in arr %}
我是一名优秀的程序员,十分优秀!