我正在使用Django 1.3,我有一个simple_tag,我需要返回一些未转义的
HTML,无论我做什么,它仍然逃避我的&到& amp;和我的到|.
from django import template
from django.template import loader, Context
from django.utils.safestring import mark_safe
register = template.Library()
@register.simple_tag()
def show_stuff(arg1=None, arg2=None, arg3='someconstant'):
# Do some stuff
if someconstant == 'somevalue':
template_name = 'template1.html'
else:
template_name = 'template2.html'
template = loader.get_template(template_name)
html = template.render(Context( {'myvar': myvar,} ))
html = mark_safe(html)
print type(html)
return html
印刷声明显示
<class 'django.utils.safestring.SafeUnicode'>
从我的理解不应该被逃脱.我在我的模板中调用标签,如下所示:
{% show_stuff 'arg1' 'arg2' 'arg3' %}
非常感谢帮助.
更新:通过以下评论尝试以下内容.没有返回错误,但仍然逃脱HTML:
...
template = loader.get_template(template_name)
html = template.render(Context( {'myvar': myvar,} ))
html = mark_safe(html)
print type(html)
return html
show_stuff().is_safe=True
还尝试包装template1.html和template2.html的内容
{% autoescape off %}
template html contents with & and |
{% endautoescape %}
并使用autoescape标记包装templatetag调用本身.没有成功.
最佳答案 在与问题的作者讨论时,我们发现角色实际上没有被转义. Scoopseven(作者)使用Firefox中的上下文菜单选项“Show Selection Source”查看了源html.在这种情况下,显示转义字符.