- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有以下模型:
class Meeting(models.Model):
meeting_title = models.CharField(default='', max_length=128, blank=True, null=True)
meeting_time = models.TimeField(blank=False, null=False)
meeting_date = models.DateField(blank=False, null=False)
meeting_visitors = models.ManyToManyField(Visitor, blank=True, default="")
和下面的形式:
class AddMeetingForm(forms.ModelForm):
class Meta:
model = Meeting
fields = '__all__'
由于meeting_visitors
是一个ManyToMany
字段,它可以包含一个或多个Visitor
记录。
此表单可以在一天中的不同时间更新。我想知道添加到 session 中的每个 Visitor
的时间戳(即在现实世界中,他们到达 session 的时间)。
执行此操作最简单/最有效的方法是什么?
我知道我可以通过 meeting_updated = models.DateTimeField(auto_now_add =False, auto_now=True)
获取模型实例更新的时间戳
,但我想要等效的对于 meeting_visitors
字段中的每条记录。
最佳答案
您可以在多对多字段中使用 through
关键字轻松创建这种关系
Django allows you to specify the model that will be used to govern the many-to-many relationship. You can then put extra fields on the intermediate model. The intermediate model is associated with the ManyToManyField using the through argument to point to the model that will act as an intermediary.
因此,您可以这样使用它。
class Visitor(models.Model):
name = models.CharField(max_length=30)
class Meeting(model.Model):
title = models.CharField(max_length=30)
time = models.TimeField(blank=False, null=False)
date = models.DateField(blank=False, null=False)
attendance = models.ManyToManyField(Visitor, through='Attendant')
class Attendant(models.Model):
visitors = models.ForeignKey(Visitor)
meeting = models.ForeignKey(Meeting)
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
关于python - 如何为 ManyToMany 记录添加时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31776586/
给定一个带有多个 date_time 戳的字符串,我想 提取第一个戳及其前面的文本 候选字符串可以有一个或多个时间戳 后续的 date_time 戳记将被 sep="-" 隔开 后续date_time
是否可以合并从相机拍摄的文本和照片?我想在照片上标记日期和时间,但我在 Google 上找不到任何内容。 最佳答案 使用下面的代码来实现你所需要的。 Bitmap src = Bitm
有没有办法通过 Graph API 戳另一个用户?基于this post ,并使用 Graph Explorer ,我发布到“/USERID/pokes”,我已经授予它(Graph API 应用程序和
我有两个向左浮动的元素。一个是 body 的第一个 child ,另一个是容器的第一个 child ,容器是 body 的第二个 child 。 ...
我是一名优秀的程序员,十分优秀!