How to check for null in Twig?

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

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

8条回答
  •  萌比男神i
    2020-11-30 17:49

    You can also use one line to do that:

    {{ yourVariable is not defined ? "Not Assigned" : "Assigned" }}
    

提交回复
热议问题