私はDjango 1.3を使用しており、エスケープされていないHTMLを返す必要があるsimple_tagがありますが、何をしても&を&にエスケープしています。と私の | %7C に。
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
printステートメントは明らかにします
<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 %}
templatetag 呼び出し自体を autoescape タグでラップします。失敗。