Python Flask从变量中渲染文本,例如render_template
我知道烧瓶的功能render_template
。我必须提供模板的文件名。但是现在我想呈现模板的字符串(即模板的内容)。那讲得通。但我现在不想解释原因。如何简单地渲染模板的文本?
回答:
你可以使用render_template_string
:
>>> from flask import render_template_string>>> render_template_string('hello {{ what }}', what='world')
'hello world'
以上是 Python Flask从变量中渲染文本,例如render_template 的全部内容, 来源链接: utcz.com/qa/432118.html