0
我通過Makotemplate讀取手動和看到如下代碼:爲什麼在mako中使用Context?
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()
什麼好處使用右鍵?