Python框架Django:render()函数

必选参数:

request:

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

template_name:

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

可选参数:

context:

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

content_type:

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

status:

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

using:

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

eg:

from django.shortcuts import render

def my_view(request):
    # View code here...
    return render(request, 'myapp/index.html', 
        {'foo': 'bar',}, content_type='application/xhtml+xml')

相当于:

from django.http import HttpResponse
from django.template import loader

def my_view(request):
    # View code here...
    t = loader.get_template('myapp/index.html')
    c = {'foo': 'bar'}
    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

猜你喜欢

转载自blog.csdn.net/Keruila/article/details/82494251