树枝“ in”语句可能出现问题。这是几个示例:
为什么这是可行的
{% set curPath = 'http://example.com' %}
{% if 'exa' in curPath %}
Inside The If Statement
{% endif %}
为什么这个不起作用?
{% set curPath = url('<current>') %}
{{ curPath }} // prints 'example.com'
{% if 'exa' in curPath %}
Inside The If Statement
{% endif %}