为什么将 Context 与 mako 一起使用?

发布于 2024-11-26 22:00:29 字数 328 浏览 2 评论 0原文

我阅读 Makotemplate 的手册并看到以下代码:

from mako.template import Template
from mako.runtime import Context
from StringIO import StringIO

mytemplate = Template("hello, ${name}!")
buf = StringIO()
ctx = Context(buf, name="jack")
mytemplate.render_context(ctx)
print buf.getvalue()

使用 Context 有什么好处?

I reads manual by Makotemplate and see follows code:

from mako.template import Template
from mako.runtime import Context
from StringIO import StringIO

mytemplate = Template("hello, ${name}!")
buf = StringIO()
ctx = Context(buf, name="jack")
mytemplate.render_context(ctx)
print buf.getvalue()

What profit use Context?

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

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

发布评论

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

评论(1

对你而言 2024-12-03 22:00:29

您可能不会直接使用它,它包含输出缓冲区和可以从模板内引用的变量字典。通常最好使用 Templaterender 方法。

>>> Template('hello ${name}!').render(name='jack')
<<< u'hello jack!'

您可以在此处阅读更多相关信息。

You probably won't use it directly, it contains both the output buffer and a dictionary of variables that can be referenced from within the template. It's usually preferable to use the render method of Template.

>>> Template('hello ${name}!').render(name='jack')
<<< u'hello jack!'

You can read more about it here.

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