在nodejs中包含if与nunjucks

时间:2017-04-07 13:50:54

标签: node.js templates express render nunjucks

我使用nodejs处理用户的系统。 我用快递和nunjucks。 我试图在用户登录到站点时渲染模板,并在用户注销时使用anoter模板。

{% if isLoging %}
        {% include "toolbar_guest.html" %}
{% else %}
        {% include "toolbar_guest.html" %}
{% endif %}

但它不起作用...... 如果我试试这个:

{% if isLoging %}
        connected
{% else %}
    not connected!
{% endif %}

它的工作..

1 个答案:

答案 0 :(得分:0)

{% include 'toolbar_user.html' if isLogging else 'toolbar_guest.html' %}