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
|
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
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
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2007-01-03 22:16:58 +08:00
|
|
|
return self.name
|
|
|
|
|
|
|
|
class ArticleManager(models.Manager):
|
|
|
|
def get_query_set(self):
|
|
|
|
return super(ArticleManager, self).get_query_set().filter(authors__name__icontains='sir')
|
|
|
|
|
|
|
|
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
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2007-01-03 22:16:58 +08:00
|
|
|
return self.title
|