gpt4 book ai didi

TWIG - 遍历字符串

转载 作者:行者123 更新时间:2023-12-04 11:22:16 26 4
gpt4 key购买 nike

我有一个变量 page.stock,它在负载上设置为字符串“3,4,5,6”。

我想遍历这个变量。我试过:

{% for mysize in app.request.get(page.stock) %}

<input type="radio" id="{{mysize}}" name="size" value="{{mysize}}" >
<label for="{{mysize}}">{{mysize}}</label>

{% endfor %}

我也试过:
{% for mysize in page.stock %}

<input type="radio" id="{{mysize}}" name="size" value="{{mysize}}" >
<label for="{{mysize}}">{{mysize}}</label>

{% endfor %}

两者都没有运气。我如何遍历 ,分隔字符串?

最佳答案

你需要split将字符串转换为列表:

{% for mysize in page.stock|split(',') %}
<input type="radio" id="{{mysize}}" name="size" value="{{mysize}}" >
<label for="{{mysize}}">{{mysize}}</label>
{% endfor %}

关于TWIG - 遍历字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16696494/

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