如何使用参数呈现基于文件的模板?

时间:2011-05-22 00:28:29

标签: python mako

from mako.template import Template

stext = "hi"

mytemplate = Template(filename='./t.txt')
print mytemplate.render()

t.txt:

${hi}  , i am here

1 个答案:

答案 0 :(得分:2)

将最后一行替换为:

mytemplate.render(hi = "world")

现在,hi可以与您喜欢的任何内容相等,而不仅仅是"world"