我希望以 HTML 格式呈现一个 html 序列,而不是将其显示为字符串。
视图.py -
from django.utils.html import escape
ret_html = """<p> Please click the following link
to authorize the application - <a href='""" + auth_url + """' target='_blank'>Authorize!</a> </p>"""
return HttpResponse(escape(ret_html))
上面的内容在浏览器中完全像这样呈现 -
<p> Please click the following link to authorize the application - <a href='/social/addtwitter/' target='_blank'>Authorize!</a> </p>
而我希望它看起来像这样 -
请点击以下链接对应用程序进行授权 - [Authorize!][1]
任何想法,我都可以做一些调整以将字符串呈现为 html。
PS:我知道render
并且render_to_response