当前位置:   article > 正文

Python框架Django:render()函数_python的render函数

python的render函数

必选参数:

request:

用于生成此响应的请求对象。

template_name:

要使用的模板的全名或模板名称的序列。如果给定一个序列,则将使用存在的第一个模板。有关如何查找模板的更多信息,请参见 template loading documentation 。

可选参数:

context:

要添加到模板上下文的值的字典。 默认情况下,这是一个空的字典。 如果字典中的值是可调用的,则视图将在渲染模板之前调用它。

content_type:

用于结果文档的MIME类型默认为:设置:setting:DEFAULT_CONTENT_TYPE 设置的值。

status:

响应的状态代码默认为“200”。

using:

用于加载模板的模板引擎的 :setting:`NAME ` 。

eg:

  1. from django.shortcuts import render
  2. def my_view(request):
  3. # View code here...
  4. return render(request, 'myapp/index.html',
  5. {'foo': 'bar',}, content_type='application/xhtml+xml')

相当于:

  1. from django.http import HttpResponse
  2. from django.template import loader
  3. def my_view(request):
  4. # View code here...
  5. t = loader.get_template('myapp/index.html')
  6. c = {'foo': 'bar'}
  7. return HttpResponse(t.render(c, request), content_type='application/xhtml+xml')

内容来自Django文档,链接:https://docs.djangoproject.com/zh-hans/2.1/topics/http/shortcuts/#django.shortcuts.render

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

闽ICP备14008679号