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 に答える