2007-01-03 22:16:58 +08:00
|
|
|
"""
|
2007-03-24 04:17:04 +08:00
|
|
|
35. DB-API Shortcuts
|
2007-01-03 22:16:58 +08:00
|
|
|
|
2008-08-12 22:15:38 +08:00
|
|
|
``get_object_or_404()`` is a shortcut function to be used in view functions for
|
|
|
|
performing a ``get()`` lookup and raising a ``Http404`` exception if a
|
|
|
|
``DoesNotExist`` exception was raised during the ``get()`` call.
|
2007-01-03 22:16:58 +08:00
|
|
|
|
2008-08-12 22:15:38 +08:00
|
|
|
``get_list_or_404()`` is a shortcut function to be used in view functions for
|
|
|
|
performing a ``filter()`` lookup and raising a ``Http404`` exception if a
|
|
|
|
``DoesNotExist`` exception was raised during the ``filter()`` call.
|
2007-01-03 22:16:58 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
2012-08-12 18:32:08 +08:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2007-01-03 22:16:58 +08:00
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
@python_2_unicode_compatible
|
2007-01-03 22:16:58 +08:00
|
|
|
class Author(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
name = models.CharField(max_length=50)
|
2008-08-12 22:15:38 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
def __str__(self):
|
2007-01-03 22:16:58 +08:00
|
|
|
return self.name
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2007-01-03 22:16:58 +08:00
|
|
|
class ArticleManager(models.Manager):
|
2013-03-08 22:15:23 +08:00
|
|
|
def get_queryset(self):
|
|
|
|
return super(ArticleManager, self).get_queryset().filter(authors__name__icontains='sir')
|
2007-01-03 22:16:58 +08:00
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
@python_2_unicode_compatible
|
2007-01-03 22:16:58 +08:00
|
|
|
class Article(models.Model):
|
|
|
|
authors = models.ManyToManyField(Author)
|
2007-08-05 13:14:46 +08:00
|
|
|
title = models.CharField(max_length=50)
|
2007-01-03 22:16:58 +08:00
|
|
|
objects = models.Manager()
|
|
|
|
by_a_sir = ArticleManager()
|
2008-08-12 22:15:38 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
def __str__(self):
|
2007-01-03 22:16:58 +08:00
|
|
|
return self.title
|