我有一个 Python 脚本创建字典并将其传递给 html 页面以生成报告。
在 Python 中:
data_query= {}
data_query["service1"] = "value1"
data_query["service2"] = "value2"
return data_query
在 HTML 中:
% for name, count in data_query:
<tr>
<td>${name}</td>
<td>${count}</td>
</tr>
% endfor
它不起作用,说它没有返回足够的值。
我也试过(在另一个问题的评论中指出,我错误地删除了):
% for name, count in dict.iteritems():
它没有给出任何错误,但不起作用。什么都不显示。
${len(dict)}
给出正确的字典长度
${len(dict.iteritems())}
不显示任何内容,并且似乎对我的表格格式产生了奇怪的影响。
有没有办法在 HTMl 中正确迭代字典以显示键和值?
编辑:我如何将字典转移到 html 页面。
from mako.lookup import TemplateLookup
from mako.runtime import Context
from mako.exceptions import text_error_template
html_lookup = TemplateLookup(directories=[os.path.join(self.dir_name)])
html_template = html_lookup.get_template('/templates/report.html')
html_data = { 'data_queries' : data_queries }
html_ctx = Context(html_file, **html_data)
try:
html_template.render_context(html_ctx)
except:
print text_error_template().render(full=False)
html_file.close()
return
html_file.close()