寻找一个解决方案来读取可以传递到上下文并在模板中显示的变量的完整列表,使用Django或Jinja2。
例如,在Django中这样的事情:
from django.template import Template
template = Template("<h1>{{title}}</h1>{%for v in values%}<p>{{v}}</p>{%endfor%}")
for node in template.nodelist:
#Get the variable name from the node
这似乎是一种真正的痛苦。我想要的只是一个上下文对象可以传递给模板的键列表,在本例中,“title”和“values”
答案 0 :(得分:2)