95

我有一个要渲染的 jinja2 模板(.html 文件)(用我的 py 文件中的值替换标记)。但是,我不想将渲染结果发送到浏览器,而是将其写入新的 .html 文件。我想对于 django 模板来说,解决方案也是类似的。

我怎样才能做到这一点?

4

3 回答 3

148

这样的事情怎么样?

from jinja2 import Environment, FileSystemLoader
env = Environment(loader=FileSystemLoader('templates'))
template = env.get_template('test.html')
output_from_parsed_template = template.render(foo='Hello World!')
print(output_from_parsed_template)

# to save the results
with open("my_new_file.html", "w") as fh:
    fh.write(output_from_parsed_template)

测试.html

<h1>{{ foo }}</h1>

输出

<h1>Hello World!</h1>

如果您使用的是 Flask 等框架,那么您可以在返回之前在视图底部执行此操作。

output_from_parsed_template = render_template('test.html', foo="Hello World!")
with open("some_new_file.html", "wb") as f:
    f.write(output_from_parsed_template)
return output_from_parsed_template
于 2012-08-08T04:20:53.717 回答
55

您可以将模板流转储到文件,如下所示:

Template('Hello {{ name }}!').stream(name='foo').dump('hello.html')

参考:http: //jinja.pocoo.org/docs/dev/api/#jinja2.environment.TemplateStream.dump

于 2016-06-29T15:59:12.190 回答
9

因此,在加载模板后,调用 render 然后将输出写入文件。'with' 语句是一个上下文管理器。在缩进中,您有一个打开的文件,例如名为“f”的对象。

template = jinja_environment.get_template('CommentCreate.html')     
output = template.render(template_values)) 

with open('my_new_html_file.html', 'w') as f:
    f.write(output)
于 2012-08-08T04:21:12.640 回答