res.redirect仅重定向nunjucks {%块内容%}

时间:2018-11-13 11:18:44

标签: html node.js express restify nunjucks

我有一个html页面,其中包含一个{%block content%},其中包含一个选项卡面板。该选项卡面板具有指向其他html页面的href。

该块包含另一个名为{%block tab-content%}的块。 在这里其他HTML页面被渲染

我实现了一个会话,可以从选项卡面板访问页面,但只能在有限的时间内进行。

现在,如果会话到期,我想重定向到'/',例如:res.redirect('/')。

问题在于,只有{%block tab-panel%}呈现了“ /”。因此面板仍然存在-不应该

重定向示例

Router.prototype.adminReceivers = function () {
return function (req, res, next) {
    if (req.session.username != "admin") {
        res.process('404.html', null, next);
    } else {
        res.process('admin.receivers.html', null, next);
    }
  };
};

关于修女的例子

{% extends "admin.html" %}

{% block tabcontent %}
{% endblock %}

0 个答案:

没有答案