如果后台不仅向返回title,还想返回content该怎么办呢
如果后台不仅向返回title,还想返回content该怎么办呢
如果后台不仅向返回title,还想返回content该怎么办呢
2017-06-16
def db(request):
article = models.Article.objects.get(pk=1)
return render(request, 'blog/index.html', {'article':article})
返回数据库里的 title context 就可以在
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>{{ article.title }}</h1>
<h2>{{ article.content }}</h2>
</body>
</html>
实现
举报