为什么将 Context 与 mako 一起使用?
我阅读 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能不会直接使用它,它包含输出缓冲区和可以从模板内引用的变量字典。通常最好使用
Template
的render
方法。您可以在此处阅读更多相关信息。
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 ofTemplate
.You can read more about it here.