为什么这个树枝语句不起作用?

时间:2018-06-28 15:13:44

标签: twig

树枝“ 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 %} 

0 个答案:

没有答案