最佳答案
我只想循环遍历一个现有的列表,然后用它创建一个逗号分隔的字符串。
就像这样: my_string = 'stuff, stuff, stuff, stuff'
我已经知道关于 loop.last
,我只是需要知道如何使我的代码下面的第三行工作。
{% set my_string = '' %}
{% for stuff in stuffs %}
{% set my_string = my_string + stuff + ', '%}
{% endfor%}