我有一个字符串like this and whenever there are {{template_tags}} I would like my script to {{replace}} them in a {{loop}}
。
由于我无法知道字符串中的标签,我需要
template_tags
,replace
和loop
。我已经有了一个方法,它接受标记名称并返回值以用def raw(key_name)
替换它。
答案 0 :(得分:0)
from django.template import Context, Template
params = {.....}
t = Template('template String')
c = Context(params)
t.render(c)