Twig ternary operator, Shorthand if-then-else

后端 未结 3 1352
眼角桃花
眼角桃花 2020-12-12 13:32

Does Twig support ternary (shorthand if-else) operator?

I need some conditional logic like:

{%if ability.id in company_abilities %}
    

        
3条回答
  •  不知归路
    2020-12-12 13:48

    {{ (ability.id in company_abilities) ? 'selected' : '' }}
    

    The ternary operator is documented under 'other operators'

提交回复
热议问题