Kerangka contenttypesLink to this heading
Django includes a contenttypes application that can
track all of the models installed in your Django-powered project, providing a
high-level, generic interface for working with your models.
IkhtisarLink to this heading
At the heart of the contenttypes application is the
ContentType model, which lives at
django.contrib.contenttypes.models.ContentType. Instances of
ContentType represent and store
information about the models installed in your project, and new instances of
ContentType are automatically
created whenever new models are installed.
Instances of ContentType have
methods for returning the model classes they represent and for querying objects
from those models. ContentType
also has a custom manager that adds methods for
working with ContentType and for
obtaining instances of ContentType
for a particular model.
Relations between your models and
ContentType can also be used to
enable "generic" relationships between an instance of one of your
models and instances of any model you have installed.
Memasang kerangka contenttypesLink to this heading
The contenttypes framework is included in the default
INSTALLED_APPS list created by django-admin startproject,
but if you've removed it or if you manually set up your
INSTALLED_APPS list, you can enable it by adding
'django.contrib.contenttypes' to your INSTALLED_APPS setting.
It's generally a good idea to have the contenttypes framework installed; several of Django's other bundled applications require it:
The admin application uses it to log the history of each object added or changed through the admin interface.
Django's
authentication frameworkuses it to tie user permissions to specific models.
Model ContentTypeLink to this heading
- class ContentTypeLink to this definition
Each instance of
ContentTypehas two fields which, taken together, uniquely describe an installed model:- app_labelLink to this definition
The name of the application the model is part of. This is taken from the
app_labelattribute of the model, and includes only the last part of the application's Python import path;django.contrib.contenttypes, for example, becomes anapp_labelofcontenttypes.
- modelLink to this definition
Nama dari kelas model.
Additionally, the following property is available:
- nameLink to this definition
The human-readable name of the content type. This is taken from the
verbose_nameattribute of the model.
Let's look at an example to see how this works. If you already have
the contenttypes application installed, and then add
the sites application to your
INSTALLED_APPS setting and run manage.py migrate to install it,
the model django.contrib.sites.models.Site will be installed into
your database. Along with it a new instance of
ContentType will be
created with the following values:
Metode pada instance ContentTypeLink to this heading
Each ContentType instance has
methods that allow you to get from a
ContentType instance to the
model it represents, or to retrieve objects from that model:
- ContentType.get_object_for_this_type(**kwargs)Link to this definition
Takes a set of valid lookup arguments for the model the
ContentTyperepresents, and doesa get() lookupon that model, returning the corresponding object.
- ContentType.model_class()Link to this definition
Mengembalikan kelas model diwakilkan oleh instance
ContentTypeini.
For example, we could look up the
ContentType for the
User model:
>>> from django.contrib.contenttypes.models import ContentType
>>> ContentType.objects.get(app_label="auth", model="user")
<ContentType: user>
Dan kemudian gunakan itu pada permintaan untuk User tertentu, atau untuk mendapatkan akses ke kelas model User:
>>> user_type.model_class()
<class 'django.contrib.auth.models.User'>
>>> user_type.get_object_for_this_type(username='Guido')
<User: Guido>
Bersama-sama, meth:~django.contrib.contenttypes.models.ContentType.get_object_for_this_type dan model_class() mengadakan dua sangat penting penggunaan kasus:
Using these methods, you can write high-level generic code that performs queries on any installed model -- instead of importing and using a single specific model class, you can pass an
app_labelandmodelinto aContentTypelookup at runtime, and then work with the model class or retrieve objects from it.You can relate another model to
ContentTypeas a way of tying instances of it to particular model classes, and use these methods to get access to those model classes.
Several of Django's bundled applications make use of the latter technique.
For example,
the permissions system in
Django's authentication framework uses a
Permission model with a foreign
key to ContentType; this lets
Permission represent concepts like
"can add blog entry" or "can delete news story".
ContentTypeManagerLink to this heading
- class ContentTypeManagerLink to this definition
ContentTypejuga mempunyai pengelola penyesuaian,ContentTypeManager, yang menambahkan metode berikut:- clear_cache()Link to this definition
Bersihkan cache internal digunakan oleh
ContentTypeuntuk menjaga lintasan dari model-model untuk yang itu telah membuat instanceContentType. Anda mungkin tidak pernah butuh memanggil metode ini anda sendiri; Django akan memanggil itu secara otomatis ketika itu dibutuhkan.
- get_for_id(id)Link to this definition
Lookup a
ContentTypeby ID. Since this method uses the same shared cache asget_for_model(), it's preferred to use this method over the usualContentType.objects.get(pk=id)
- get_for_model(model, for_concrete_model=True)Link to this definition
Takes either a model class or an instance of a model, and returns the
ContentTypeinstance representing that model.for_concrete_model=Falseallows fetching theContentTypeof a proxy model.
- get_for_models(*models, for_concrete_models=True)Link to this definition
Takes a variadic number of model classes, and returns a dictionary mapping the model classes to the
ContentTypeinstances representing them.for_concrete_models=Falseallows fetching theContentTypeof proxy models.
- get_by_natural_key(app_label, model)Link to this definition
Returns the
ContentTypeinstance uniquely identified by the given application label and model name. The primary purpose of this method is to allowContentTypeobjects to be referenced via a natural key during deserialization.
The get_for_model() method is especially
useful when you know you need to work with a
ContentType but don't
want to go to the trouble of obtaining the model's metadata to perform a manual
lookup:
>>> from django.contrib.auth.models import User
>>> ContentType.objects.get_for_model(User)
<ContentType: user>
Hubungan umumLink to this heading
Adding a foreign key from one of your own models to
ContentType allows your model to
effectively tie itself to another model class, as in the example of the
Permission model above. But it's possible
to go one step further and use
ContentType to enable truly
generic (sometimes called "polymorphic") relationships between models.
Contoh sederhana adalah sistem etiket, yang mungkin kelihatan seperti ini:
from django.db import models
from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.models import ContentType
class TaggedItem(models.Model):
tag = models.SlugField()
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
object_id = models.PositiveIntegerField()
content_object = GenericForeignKey('content_type', 'object_id')
def __str__(self): # __unicode__ on Python 2
return self.tag
Sebuah ForeignKey biasa dapat hanya "menunjuk" satu model lain, yang berarti bahwa jika model TaggedItem menggunakan sebuah ForeignKey itu akan harus memilih satu dan hanya satu model untuk menyimpan etiket-etiket. Aplikasi contenttype menyediakan jenis bidang khusus (GenericForeignKey) yang memecahkan ini dan mengizinkan hubungan dengan model apapun.
- class GenericForeignKeyLink to this definition
Terdapat tiga bagian untuk mengatur
GenericForeignKey:Give your model a
ForeignKeytoContentType. The usual name for this field is "content_type".Give your model a field that can store primary key values from the models you'll be relating to. For most models, this means a
PositiveIntegerField. The usual name for this field is "object_id".Give your model a
GenericForeignKey, and pass it the names of the two fields described above. If these fields are named "content_type" and "object_id", you can omit this -- those are the default field namesGenericForeignKeywill look for.
- for_concrete_modelLink to this definition
If
False, the field will be able to reference proxy models. Default isTrue. This mirrors thefor_concrete_modelargument toget_for_model().
This will enable an API similar to the one used for a normal
ForeignKey;
each TaggedItem will have a content_object field that returns the
object it's related to, and you can also assign to that field or use it when
creating a TaggedItem:
>>> from django.contrib.auth.models import User
>>> guido = User.objects.get(username='Guido')
>>> t = TaggedItem(content_object=guido, tag='bdfl')
>>> t.save()
>>> t.content_object
<User: Guido>
Due to the way GenericForeignKey
is implemented, you cannot use such fields directly with filters (filter()
and exclude(), for example) via the database API. Because a
GenericForeignKey isn't a
normal field object, these examples will not work:
# This will fail
>>> TaggedItem.objects.filter(content_object=guido)
# This will also fail
>>> TaggedItem.objects.get(content_object=guido)
Likewise, GenericForeignKeys
does not appear in ModelForms.
Membalikkan hubungan umumLink to this heading
- class GenericRelationLink to this definition
The relation on the related object back to this object doesn't exist by default. Setting
related_query_namecreates a relation from the related object back to this one. This allows querying and filtering from the related object.
Jika anda mengetahui model-model mana anda akan menggunakan paling sering, anda dapat juga menambahkan hubungan umum "reverse" untuk mengadakan sebuah tambahan API. Sebagai contoh:
from django.db import models
from django.contrib.contenttypes.fields import GenericRelation
class Bookmark(models.Model):
url = models.URLField()
tags = GenericRelation(TaggedItem)
Bookmark instances will each have a tags attribute, which can
be used to retrieve their associated TaggedItems:
>>> b = Bookmark(url='https://www.djangoproject.com/')
>>> b.save()
>>> t1 = TaggedItem(content_object=b, tag='django')
>>> t1.save()
>>> t2 = TaggedItem(content_object=b, tag='python')
>>> t2.save()
>>> b.tags.all()
<QuerySet [<TaggedItem: django>, <TaggedItem: python>]>
Defining GenericRelation with
related_query_name set allows querying from the related object:
tags = GenericRelation(TaggedItem, related_query_name='bookmarks')
Ini mengadakan penyaring, oengurutan, dan tindakan permintaan lain pada Bookmark dari TaggedItem:
>>> # Get all tags belonging to bookmarks containing `django` in the url
>>> TaggedItem.objects.filter(bookmarks__url__contains='django')
<QuerySet [<TaggedItem: django>, <TaggedItem: python>]>
Tentu saja, jika anda tidak menambah membalikkan hubungan, anda dapat melakukan jenis-jenis sama dari pencarian secara manual:
>>> b = Bookmark.objects.get(url='https://www.djangoproject.com/')
>>> bookmark_type = ContentType.objects.get_for_model(b)
>>> TaggedItem.objects.filter(content_type__pk=bookmark_type.id, object_id=b.id)
<QuerySet [<TaggedItem: django>, <TaggedItem: python>]>
Just as GenericForeignKey
accepts the names of the content-type and object-ID fields as
arguments, so too does
GenericRelation;
if the model which has the generic foreign key is using non-default names
for those fields, you must pass the names of the fields when setting up a
GenericRelation to it. For example, if the TaggedItem model
referred to above used fields named content_type_fk and
object_primary_key to create its generic foreign key, then a
GenericRelation back to it would need to be defined like so:
tags = GenericRelation(
TaggedItem,
content_type_field='content_type_fk',
object_id_field='object_primary_key',
)
Note also, that if you delete an object that has a
GenericRelation, any objects
which have a GenericForeignKey
pointing at it will be deleted as well. In the example above, this means that
if a Bookmark object were deleted, any TaggedItem objects pointing at
it would be deleted at the same time.
Unlike ForeignKey,
GenericForeignKey does not accept
an on_delete argument to customize this
behavior; if desired, you can avoid the cascade-deletion simply by not using
GenericRelation, and alternate
behavior can be provided via the pre_delete
signal.
Hubungan umum dan pengumpulanLink to this heading
Django's database aggregation API bekerja dengan GenericRelation. Sebagai contoh, anda dapat menemukan berapa banyak etiket semua bookmark miliki:
>>> Bookmark.objects.aggregate(Count('tags'))
{'tags__count': 3}
Hubungan umum di formulirLink to this heading
Modul django.contrib.contenttypes.forms menyediakan:
Pabrik formset,
generic_inlineformset_factory(), untuk digunakan denganGenericForeignKey.
- class BaseGenericInlineFormSetLink to this definition
- generic_inlineformset_factory(model, form=ModelForm, formset=BaseGenericInlineFormSet, ct_field='content_type', fk_field='object_id', fields=None, exclude=None, extra=3, can_order=False, can_delete=True, max_num=None, formfield_callback=None, validate_max=False, for_concrete_model=True, min_num=None, validate_min=False)Link to this definition
Mengembalikan
GenericInlineFormSetmenggunakanmodelformset_factory().Anda harus menyediakan
ct_fielddanfk_fieldjika mereka berbeda dari awalan,content_typedanobject_idmasing-masing. Parameter lain adalah mirip ke yang didokumentasi dimodelformset_factory()daninlineformset_factory().The
for_concrete_modelargument corresponds to thefor_concrete_modelargument onGenericForeignKey.
Hubungan umum di adminLink to this heading
Modul django.contrib.contenttypes.admin menyediakan GenericTabularInline dan GenericStackedInline (subkelas-subkelas dari GenericInlineModelAdmin)
Kelas-kelas dan fungsi-fungsi ini mengadakan penggunaan hubungan umum di formulir dan admin. Lihat dokumentasi model formset dan admin untuk informasi lebih.
- class GenericInlineModelAdminLink to this definition
Kelas
GenericInlineModelAdminmewarisi semua sifat-sifat dari sebuah kelasInlineModelAdmin. Bagaimanapun, itu menambahkan sebuah pasang dari itu sendiri untuk bekerja dengan hubungan umum:- ct_fieldLink to this definition
The name of the
ContentTypeforeign key field on the model. Defaults tocontent_type.
- ct_fk_fieldLink to this definition
Nama dari bidang integer yang mewakili ID dari obyek terkait. Awalan pada
object_id.
- class GenericTabularInlineLink to this definition
- class GenericStackedInlineLink to this definition
Subkelas-subkelas dari
GenericInlineModelAdmindengan tata letak bertumpuk dan datar, masing-masing.