Django——render() 转自官方文档

Posted jcxioo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django——render() 转自官方文档相关的知识,希望对你有一定的参考价值。

快捷函数  render( 请求, 模板, 内容)

载入模板,填充上下文,再返回它生成的HttpResponse对象

此时就不需要再导入 loader和HttpResponse

1 from django.shortcuts import render
2 
3 from .models import Question
4 
5 
6 def index(request):
7     latest_question_list = Question.objects.order_by(-pub_date)[:5]
8     context = {latest_question_list: latest_question_list}
9     return render(request, polls/index.html, context)
        # render( 请求, 模板, 内容)

 

以上是关于Django——render() 转自官方文档的主要内容,如果未能解决你的问题,请参考以下文章

django - render_to_response - 渲染了一些东西

django-xadmin的使用(比官方文档更精简)

react入门学习:井字棋游戏(官方文档教程)

react入门学习:井字棋游戏(官方文档教程)

Django 模板 render传参不转码

Django:自定义模板简单标签应该引发异常还是静默失败?