字符串比较运算符如何在Twig中工作?
这怎么可能?这似乎是一个非常非常奇怪的问题(除非我错过了一些非常简单的东西):
法典:
{{ dump(nav) }}
{% if nav == "top" %}
<div class="well">This would be the nav</div>
{% endif %}
输出:
boolean true
<div class="well">This would be the nav</div>
基本上,如果为真,它将输出,但它并不意味着要检查真。