0

我在views.py中有这样的代码

template = loader.get_template('mysite/index.html')
context = Context({'try':'<h1>Header no 1</h1>'})
return HttpResponse(template.render(context))

在 index.html 我写

<html>
<body>
   {{ try }}
</body>
</html>

相反,标题收到了行标签和所有东西。如何解决?

4

1 回答 1

4

尝试这个:

from django.utils.safestring import mark_safe

template = loader.get_template('mysite/index.html')
context = Context({'try': mark_safe('<h1>Header no 1</h1>')})
return HttpResponse(template.render(context))
于 2013-07-12T07:46:03.983 回答