django.shortcuts 收集了“跨越” 多层MVC 的辅助函数和类。 换句话讲,这些函数/类为了方便,引入了可控的耦合。
结合一个给定的模板和一个给定的上下文字典,并返回一个渲染后的 HttpResponse 对象。
render() 与以一个强制使用RequestContext的context_instance 参数调用render_to_response() 相同。
Django 不提供返回TemplateResponse 的快捷函数,因为TemplateResponse 的构造与render() 提供的便利是一个层次的。
添加到模板上下文的一个字典。默认是一个空字典。如果字典中的某个值是可调用的,视图将在渲染模板之前调用它。
context 参数之前叫做dictionary。这个名字在Django 1.8 中废弃并将在Django 2.0 中删除。
渲染模板的上下文实例。默认情况下,模板将使用RequestContext 实例( 值来自request 和context)渲染。
版本 1.8 以后废弃:废弃context_instance 参数。仅仅使用context。
指示哪个应用包含当前的视图。更多信息,参见带命名空间的URL 的解析。
版本1.8 以后废弃:废弃current_app 参数。你应该设置request.current_app。
增加using 参数。
增加dirs 参数。
自1.8版起已弃用:废弃dirs 参数。
下面的示例渲染模板myapp/index.html,MIME 类型为application/xhtml+xml:
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 RequestContext, loader
def my_view(request):
# View code here...
t = loader.get_template('myapp/index.html')
c = RequestContext(request, {'foo': 'bar'})
return HttpResponse(t.render(c),
content_type="application/xhtml+xml")
根据一个给定的上下文字典渲染一个给定的目标,并返回渲染后的HttpResponse。
添加到模板上下文中的字典。默认是个空字典。如果字典中的某个值是可调用的,视图将在渲染模板之前调用它。
context 参数之前叫做dictionary。 这个名字在Django 1.8 中废弃并将在Django 2.0 中删除。
渲染模板使用的上下文实例。默认情况下,模板将Context 实例(值来自context)渲染。如果你需要使用上下文处理器,请使用RequestContext 实例渲染模板。你的代码看上去像是这样:
return render_to_response('my_template.html',
my_context,
context_instance=RequestContext(request))
版本1.8 以后废弃:废弃context_instance 参数。 仅仅使用context。
添加status 和using 参数。
增加dirs 参数。
自1.8版起已弃用:废弃dirs 参数。
下面的示例渲染模板myapp/index.html,MIIME 类型为application/xhtml+xml:
from django.shortcuts import render_to_response
def my_view(request):
# View code here...
return render_to_response('myapp/index.html', {"foo": "bar"},
content_type="application/xhtml+xml")
这个示例等同于:
from django.http import HttpResponse
from django.template import Context, loader
def my_view(request):
# View code here...
t = loader.get_template('myapp/index.html')
c = Context({'foo': 'bar'})
return HttpResponse(t.render(c),
content_type="application/xhtml+xml")
为传递进来的参数返回HttpResponseRedirect 给正确的URL 。
参数可以是:
默认返回一个临时的重定向;传递permanent=True 可以返回一个永久的重定向。
增加使用相对URL 的功能。
你可以用多种方式使用redirect() 函数。
通过传递一个对象;将调用get_absolute_url() 方法来获取重定向的URL:
from django.shortcuts import redirect
def my_view(request):
...
object = MyModel.objects.get(...)
return redirect(object)
通过传递一个视图的名称,可以带有位置参数和关键字参数;将使用reverse() 方法反向解析URL:
def my_view(request):
...
return redirect('some-view-name', foo='bar')
传递要重定向的一个硬编码的URL:
def my_view(request):
...
return redirect('/some/url/')
也可以是一个完整的URL:
def my_view(request):
...
return redirect('http://example.com/')
默认情况下,redirect() 返回一个临时重定向。以上所有的形式都接收一个permanent 参数;如果设置为True,将返回一个永久的重定向:
def my_view(request):
...
object = MyModel.objects.get(...)
return redirect(object, permanent=True)
在一个给定的模型管理器上调用get(),但是引发Http404 而不是模型的DoesNotExist 异常。
下面的示例从MyModel 中使用主键1 来获取对象:
from django.shortcuts import get_object_or_404
def my_view(request):
my_object = get_object_or_404(MyModel, pk=1)
这个示例等同于:
from django.http import Http404
def my_view(request):
try:
my_object = MyModel.objects.get(pk=1)
except MyModel.DoesNotExist:
raise Http404("No MyModel matches the given query.")
最常见的用法是传递一个 Model,如上所示。然而,你还可以传递一个QuerySet 实例:
queryset = Book.objects.filter(title__startswith='M')
get_object_or_404(queryset, pk=1)
上面的示例有点做作,因为它等同于:
get_object_or_404(Book, title__startswith='M', pk=1)
但是如果你的queryset 来自其它地方,它就会很有用了。
最后你还可以使用一个管理器。如果你有一个自定义的管理器,它将很有用:
get_object_or_404(Book.dahl_objects, title='Matilda')
你还可以使用关联的 管理器:
author = Author.objects.get(name='Roald Dahl')
get_object_or_404(author.book_set, title='Matilda')
注:与get()一样,如果找到多个对象将引发一个MultipleObjectsReturned 异常。
下面的示例从MyModel 中获取所有发布出来的对象:
from django.shortcuts import get_list_or_404
def my_view(request):
my_objects = get_list_or_404(MyModel, published=True)
这个示例等同于:
from django.http import Http404
def my_view(request):
my_objects = list(MyModel.objects.filter(published=True))
if not my_objects:
raise Http404("No MyModel matches the given query.")
2015年5月13日