1

我从树枝开始,我有一个小问题。我不知道如何解决它。我想检查变量是否不为空来设置标题页。我也试过“不为空”。

{% if item is not empty %}
    {% block title "Item " ~ item.name %}
{% endif %}

当有一个 Item 对象时它可以工作,但是当它为 null 时它不起作用。为什么它不起作用?我收到这个错误

Impossible to access an attribute ("name") on a NULL variable ("")
4

1 回答 1

3

尝试

{% if item is not defined %}
{% block title "Item " ~ item.name %}
{% endif %}

反而。

如果需要,请查看文档

于 2013-07-29T02:13:33.417 回答