如何将数组传递给 mako 模板?
Posted
技术标签:
【中文标题】如何将数组传递给 mako 模板?【英文标题】:How do you pass an array to a mako template? 【发布时间】:2021-09-27 11:56:06 【问题描述】:我想将一个字符串数组传递给 Mako 的渲染方法,但这不起作用:
from mako.template import Template
mytemplate = Template(filename="some.template")
str = mytemplate.render(first="John", last="Smith", nicknames=[
"JJ", "Johnny", "Jon"])
print(str)
some.template =
Hello $first $last
Your nicknames are:
% for n in $nicknames:
$n
% endfor
【问题讨论】:
【参考方案1】:在 '%' 行中,您正在编写不需要转义的常规 Python 代码:
% for n in nicknames:
$n
% endfor
【讨论】:
以上是关于如何将数组传递给 mako 模板?的主要内容,如果未能解决你的问题,请参考以下文章