【发布时间】:2017-04-07 13:50:54
【问题描述】:
我使用 nodejs 在用户系统上工作。 我用快递和双节棍。 我尝试在用户登录网站时呈现模板,并在用户注销时呈现另一个模板。
{% if isLoging %}
{% include "toolbar_guest.html" %}
{% else %}
{% include "toolbar_guest.html" %}
{% endif %}
但它不起作用... 如果我试试这个:
{% if isLoging %}
connected
{% else %}
not connected!
{% endif %}
它的工作..
【问题讨论】:
-
{% include 'toolbar_user.html' if isLogging else 'toolbar_guest.html' %}
标签: node.js templates express render nunjucks