当前位置: 首页 > 面试题库 >

Django内容类型到底如何工作?

蒋权
2023-03-14
问题内容

我真的很难理解Django的内容类型的概念。感觉非常骇人听闻,并且最终与Python趋向于做事相反。话虽如此,如果我要使用Django,则必须在框架范围内进行工作。

因此,我来​​这里想知道是否有人可以给出有关内容类型如何工作以及如何实现的实际示例。我评论过的几乎所有教程(大部分在博客上)都无法真正涵盖这个概念。他们似乎从Django文档遗漏的地方接手(似乎无处可去)。


问题答案:

因此,你想在工作中使用Content Types框架吗?
首先问自己一个问题:“这些模型中的任何一个是否需要以相同的方式与其他模型相关联,和/或以后是否会以无法预见的方式重用这些关系?” 我们问这个问题的原因是因为这是Content Types框架最擅长的:它在模型之间创建通用关系。等等,让我们深入研究一些代码,看看我的意思。

# ourapp.models
from django.conf import settings
from django.db import models

# Assign the User model in case it has been "swapped"
User = settings.AUTH_USER_MODEL

# Create your models here
class Post(models.Model):
  author = models.ForeignKey(User)
  title = models.CharField(max_length=75)
  slug = models.SlugField(unique=True)
  body = models.TextField(blank=True)

class Picture(models.Model):
  author = models.ForeignKey(User)
  image = models.ImageField()
  caption = models.TextField(blank=True)

class Comment(models.Model):
  author = models.ForeignKey(User)
  body = models.TextField(blank=True)
  post = models.ForeignKey(Post)
  picture = models.ForeignKey(Picture)

好的,因此我们确实有一种理论上可以建立这种关系的方法。但是,作为Python程序员,你的卓越才智告诉你这很糟糕,你可以做得更好。击掌!

进入内容类型框架
好了,现在我们将仔细研究我们的模型,并对其进行重新设计以使其更加“可重用”和直观。让我们从摆脱Comment模型上的两个外键开始,并用替换它们GenericForeignKey。

# ourapp.models
from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.models import ContentType

...

class Comment(models.Model):
  author = models.ForeignKey(User)
  body = models.TextField(blank=True)
  content_type = models.ForeignKey(ContentType)
  object_id = models.PositiveIntegerField()
  content_object = GenericForeignKey()

所以发生了什么事?好吧,我们进入并添加了必要的代码以允许与其他模型的通用关系。请注意,除了之外GenericForeignKey,还有一个 ForeignKeyto ContentType和a PositiveIntegerField的问题object_id。这些字段用于告诉Django与之相关的对象类型以及该对象的ID。实际上,这是有道理的,因为Django将需要同时查找这些相关对象。

好吧,这不是非常像Python的…有点丑陋!
你可能正在寻找能使Guido van Rossum感到骄傲的气密,一尘不染,直观的代码。我明白了 让我们看看这个GenericRelation领域,以便我们对此锦上添花。

# ourapp.models
from django.contrib.contenttypes.fields import GenericRelation

...

class Post(models.Model):
  author = models.ForeignKey(User)
  title = models.CharField(max_length=75)
  slug = models.SlugField(unique=True)
  body = models.TextField(blank=True)
  comments = GenericRelation('Comment')

class Picture(models.Model):
  author = models.ForeignKey(User)
  image = models.ImageField()
  caption = models.TextField(blank=True)
  comments = GenericRelation('Comment')

am!就像这样,你可以为这两个模型使用“注释”。实际上,让我们继续在shell中进行操作(python manage.py shell从Django项目目录中键入)。

>>> from django.contrib.auth import get_user_model
>>> from ourapp.models import Picture, Post

# We use get_user_model() since we are referencing directly
User = get_user_model()

# Grab our own User object
>>> me = User.objects.get(username='myusername')

# Grab the first of our own pictures so we can comment on it
>>> pic = Picture.objects.get(author=me)

# Let's start making a comment for our own picture
>>> pic.comments.create(author=me, body="Man, I'm cool!")

# Let's go ahead and retrieve the comments for this picture now
>>> pic.comments.all()
[<Comment: "Man, I'm cool!">]

# Same for Post comments
>>> post = Post.objects.get(author=me)
>>> post.comments.create(author=me, body="So easy to comment now!")
>>> post.comments.all()
[<Comment: "So easy to comment now!"]

就这么简单。

这些“一般”关系的其他实际含义是什么?
通用外键可以减少各种应用程序之间的干扰。例如,假设我们将Comment模型拉到了自己的名为的应用中chatterly。现在,我们要创建另一个名为“ noise_nimbus人们存储音乐以与他人共享”的应用程序。

如果我们想在这些歌曲中添加评论怎么办?好吧,我们可以得出一个通用关系:

# noise_nimbus.models
from django.conf import settings
from django.contrib.contenttypes.fields import GenericRelation
from django.db import models

from chatterly.models import Comment

# For a third time, we take the time to ensure custom Auth isn't overlooked
User = settings.AUTH_USER_MODEL

# Create your models here
class Song(models.Model):
  '''
  A song which can be commented on.
  '''
  file = models.FileField()
  author = models.ForeignKey(User)
  title = models.CharField(max_length=75)
  slug = models.SlugField(unique=True)
  description = models.TextField(blank=True)
  comments = GenericRelation(Comment)

我希望你们发现这对你有所帮助,因为我很想遇到一些向我展示了GenericForeignKeyand GenericRelation领域更实际应用的东西。

这好得令人难以置信吗?
就像生活中的任何事情一样,也各有利弊。每当你添加更多代码和更多抽象时,基础流程就会变得更重且更慢。尽管添加通用关系可能会尝试并智能缓存其结果,但可能会增加一点性能衰减器。总而言之,这取决于清洁度和简单性是否超过了较小的性能成本。对我来说,答案是一百万次。

内容类型框架比我在这里显示的要多。有一个整体的粒度级别和更详细的用法,但是对于一般个人而言,我认为这就是你将十分之九地使用它的方式。

通用关联器(?)当心!
一个相当大的警告是,当你使用时GenericRelation,如果删除了已GenericRelation应用(Picture)的模型,则所有相关(Comment)对象也将被删除。或至少在撰写本文时。



 类似资料:
  • 问题内容: 在查找(测试)信息时,我遇到了一些问题,完全不知道为什么会发生。现在,我知道没有实际的理由执行此操作,这绝对是可怕的代码,但是为什么行得通呢? 因此,基本上,我将对象添加到Quods的ArrayList中。现在,我看到java如何无法有效地检查它,因为它必须浏览所有引用,而这些引用可能甚至都没有存储在任何地方。但是为什么get()起作用了。get()是否不是要返回Quod的实例,就像在

  • 问题内容: 我正在研究Spring Core认证,我对Spring如何处理bean的生命周期,尤其是bean后处理器有疑问。 所以我有这个架构: 我很清楚这是什么意思: 在“ 装入Bean定义”阶段执行以下步骤: @Configuration类被处理和/或@Components被扫描和/或XML文件进行解析。 Bean定义已添加到BeanFactory(每个索引都在其ID下建立索引) 调用特殊的B

  • 问题内容: 注释如何工作? 如果我有这样的事情: 将如何影响testNumber?它甚至会影响testNumber吗? 谢谢。让我知道我是否使用错了。 问题答案: 不会影响电话号码。它仅用于制作javadocs。 有关Javadoc的更多信息:http : //www.oracle.com/technetwork/java/javase/documentation/index-137868.htm

  • 问题内容: 我正在使用Flask,并且从get请求返回一个XML文件。如何将内容类型设置为xml? 例如 问题答案: 尝试这样: 实际的Content-Type基于mimetype参数和字符集(默认为UTF-8)。

  • 我正在使用Flask,并从get请求返回一个XML文件。如何将内容类型设置为xml? 例如。

  • 我有一本书。NETCore2.0WebAPI应用程序,其中我将“Flurl.Http”(版本2.1.0)NuGet包添加到我的项目中。 我正在尝试使用Flurl对一个VisualStudioTeamServices(VSTS)APIendpoint进行简单的RESTAPI调用。 但是,我正在调用的特定VSTS api终结点要求将Content-Type设置为“应用程序/json-补丁json”,而