假设我有一个Jinja模板
<style>
p{
font-family : 'Times New Roman',Times,serif;
font-size:15px;
}
</style>
<p>------- Information -------- </p>
{% set p1 = getP1('dataset') %}
<table style='width:100%'>
<tr>
<th>Information</th>
</tr>
<tr>
<td>A</td>
<td>{{p1.a}}</td>
</tr>
<tr>
<td>B</td>
<td>{{p1.b}}</td>
</tr>
<tr>
<td>C</td>
<td>{{p1.c}}</td>
</tr>
</table>
我可以将jinja2的代码解析到jinja2模板中,其中的代码就是我上面粘贴的字符串。
In [58]: from jinja2 import Environment
In [59]: env = Environment()
In [60]: m = env.parse(code)
In [61]: m
Out[61]: Template(body=[Output(nodes=[TemplateData(data=u"\n<style>\np{\n\tfont-family : 'Times New Roman',Times,serif;\n\tfont-size:15px;\n}\n</style>\n\n<p>------- Information -------- </p>\n\n")]), Assign(target=Name(name='p1', ctx='store'), node=Call(node=Name(name='getP1', ctx='load'), args=[Const(value=u'dataset')], kwargs=[], dyn_args=None, dyn_kwargs=None)), Output(nodes=[TemplateData(data=u"\n\n<table style='width:100%'>\n\t<tr>\n\t\t<th>Information</th>\n\t</tr>\n\t<tr>\n\t\t<td>A</td>\n\t\t<td>"), Getattr(node=Name(name='p1', ctx='load'), attr='a', ctx='load'), TemplateData(data=u'</td>\n\t</tr>\n\t<tr>\n\t\t<td>B</td>\n\t\t<td>'), Getattr(node=Name(name='p1', ctx='load'), attr='b', ctx='load'), TemplateData(data=u'</td>\n\t</tr>\n\t<tr>\n\t\t<td>C</td>\n\t\t<td>'), Getattr(node=Name(name='p1', ctx='load'), attr='c', ctx='load'), TemplateData(data=u'</td>\n\t</tr>\n</table>')])])
如何将模板转换回代码?
对于python代码,我们有astor之类的软件包。 根据此issue,jinja2不支持该功能!那么我该如何编写代码来做到这一点?