【发布时间】:2011-05-22 00:28:28
【问题描述】:
from mako.template import Template
stext = "hi"
mytemplate = Template(filename='./t.txt')
print mytemplate.render()
t.txt:
${hi} , i am here
【问题讨论】:
-
相对路径在涉及网络内容时通常是错误的。
from mako.template import Template
stext = "hi"
mytemplate = Template(filename='./t.txt')
print mytemplate.render()
t.txt:
${hi} , i am here
【问题讨论】:
将最后一行替换为:
mytemplate.render(hi = "world")
现在,hi 可以等于您喜欢的任何内容,而不仅仅是"world"。
【讨论】: