How to check for null in Twig?

前端 未结 8 931
执笔经年
执笔经年 2020-11-30 17:21

What construct should I use to check whether a value is NULL in a Twig template?

8条回答
  •  一个人的身影
    2020-11-30 17:52

    How to set default values in twig: http://twig.sensiolabs.org/doc/filters/default.html

    {{ my_var | default("my_var doesn't exist") }}
    

    Or if you don't want it to display when null:

    {{ my_var | default("") }}
    

提交回复
热议问题