关于“模块”在龙卷风的模板文件中

发布于 2025-01-07 06:01:27 字数 425 浏览 1 评论 0原文

在龙卷风演示中,一个名为博客的应用程序, 在 templates/home.html 中,代码如下:

{% extends "base.html" %}

{% block body %}
{% for entry in entries %}
    {{ modules.Entry(entry) }}
{% end %}
<div><a href="/archive">{{ _("Archive") }}</a></div>
{% end %}

我想知道“模块”来自哪里。我认为它应该是这样的:

{% module Entry(entry) %}

所以我更改了代码并且它可以工作。

有人知道模板文件中的“模块”来自哪里吗?谢谢。

In the tornado demos, an app called blog,
in the templates/home.html, the code like this:

{% extends "base.html" %}

{% block body %}
{% for entry in entries %}
    {{ modules.Entry(entry) }}
{% end %}
<div><a href="/archive">{{ _("Archive") }}</a></div>
{% end %}

I want to know where is the "modules" come from. I think it should like this:

{% module Entry(entry) %}

so I changed the code and it works.

Is someone know where the "modules" in template file come from? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

御弟哥哥 2025-01-14 06:01:27

你可以在RequestHandler.__init__上找到注释:

# UIModules are available as both `modules` and `_modules` in the
# template namespace.  Historically only `modules` was available
# but could be clobbered by user additions to the namespace.
# The template {% module %} directive looks in `_modules` to avoid
# possible conflicts.

我认为这可能是旧版本tornado编写的一些代码:)所以我们应该使用{% module %}来代替。

You can find a comment on RequestHandler.__init__:

# UIModules are available as both `modules` and `_modules` in the
# template namespace.  Historically only `modules` was available
# but could be clobbered by user additions to the namespace.
# The template {% module %} directive looks in `_modules` to avoid
# possible conflicts.

I think it may be some codes written in old version of tornado:) So we should use {% module %} instead.

你在我安 2025-01-14 06:01:27

in RequestHandler.__init__ :

self.ui["_modules"] = ObjectDict((n, self._ui_module(n, m)) for n, m in
                             application.ui_modules.iteritems())
self.ui["modules"] = self.ui["_modules"]

in RequestHandler.render_string:

args.update(self.ui)
args.update(kwargs)
return t.generate(**args)

RequestHandler 是 Handler 的子类,render_string 中有模块。

in RequestHandler.__init__ :

self.ui["_modules"] = ObjectDict((n, self._ui_module(n, m)) for n, m in
                             application.ui_modules.iteritems())
self.ui["modules"] = self.ui["_modules"]

in RequestHandler.render_string:

args.update(self.ui)
args.update(kwargs)
return t.generate(**args)

RequestHandler is the subclass of your Handler, and render_string has modules in it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文