当前位置:   article > 正文

Django中的render()函数用法_django render函数

django render函数
from django.shortcuts import render  
   
def hello(request):  
    context = {}  
    context['hello'] = 'Hello World!'  
    return render(request, 'hello.html', context)  
   #return render(request, 'hello.html', {'hello':'Hello World!'})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

render()函数传递context来填充模板
help文档中render描述
render(request, template_name, context=None, content_type=None, status=None, using=None)

参数:

request: 是一个固定参数

template_name: templates中定义的文件,注意路径名。比如:“templates/polls/index.html”, 则参数这样写:“polls/index.html”

context: 要传入文件中用于渲染呈现的数据, 默认是字典格式
content_type: 生成的文档要使用的MIME 类型。默认为DEFAULT_CONTENT_TYPE 设置的值。
status: http的响应代码,默认是200.
using: 用于加载模板使用的模板引擎的名称。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/390432
推荐阅读
相关标签
  

闽ICP备14008679号