即使应该有匹配的值,这个陈述似乎也不起作用。我尝试在变量上输入一个字符串但没有结果。
{% for item in posts %}
{% set username1 = item[1] %}
{% set username2 = users[loop.index0]|replace("[u'","") |replace("']","") %}
{% if username1|string() == username2|string() %}
{{ username1 }} and {{ username2 }} are the same
{% endif %}
{% endfor %}