How to check for null in Twig?

前端 未结 8 928
执笔经年
执笔经年 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:58

         //test if varibale exist
         {% if var is defined %}
             //todo
         {% endif %}
    
         //test if variable is not null
         {% if var is not null %}
             //todo
         {% endif %}
    

提交回复
热议问题