我在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>
相反,标题收到了行标签和所有东西。如何解决?