码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-09-27 10:47:23      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:生成   cut   html   object   model   rtc   short   cts   div   

快捷函数  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() 转自官方文档

标签:生成   cut   html   object   model   rtc   short   cts   div   

原文地址:https://www.cnblogs.com/jcxioo/p/11595883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!