具体来说,我有django模型对象,我想在运行时添加属性。如果这可以在Django之外的任何python类上运行,那就太好了。
我有以下型号
models.py
class person(models.Model):
# ...
firstname=models.TextField(max_length=100)
lastname=models.TextField(max_length=100)
type=models.TextField(max_length=100)
address = models.ForeignKey(address, null=True)
class event(models.Model):
date=models.DateTimeField(auto_now=True )
name=models.CharField(max_length=100)
attendees = models.ManyToManyField(person)
def main():
p = person()
p.fisrtsname="Firsty"
p.lastname="Lasty"
p.addnewproperty(newtemporaryproperty)
p.newtemporaryproperty="This is a new temporary property"
当我使用
时person.newtemporaryproperty=property("")
尝试向其中添加值时,我收到“无法设置属性错误”。 我可能错了。
修改
我想要做的是查看模特中的每个人是否参加过活动。如果有,请按名称放置一个复选框。以下是其他相关文件
tables.py
class AttendeesTable(tables.Table):
firstname = tables.Column()
lastname = tables.Column()
here = tables.TemplateColumn('<input id="attendee_{{ record.pk }}" {{
record.here }} type="checkbox" />',
verbose_name="Here?")
class Meta:
attrs = {'id': 'attendancetable', 'width': '100%', 'class': 'table
table-hover'}
template = 'django_tables2/bootstrap.html'
row_attrs = {
'id': lambda record: str(record.pk),
}
views.py
def markattendancepage(request):
person.here = ""
people= person.objects.all()
groups = group.objects.all()
eventid= 1 #set to 1 for testing
table=None
for p in people:
if event.objects.filter(id=eventid, attendees__pk=p.id).exists():
p.here = "checked"
else:
p.here = ""
table = app.tables.AttendeesTable(people)
RequestConfig(request, paginate=False).configure(table)
return render(request, 'app/user/attendancechecker.html', {'attendeetable':table})
pass
答案 0 :(得分:2)
因为django模型实例经常在幕后重新加载,所以您可能不希望在运行时设置属性,因为它们很容易丢失。相反,您可能想要做的是在类定义中使用属性(或方法),例如
class Person(models.Model):
first_name=models.CharField(max_length=100)
last_name=models.CharField(max_length=100)
@property
def is_in_category(self):
# 'calculation' return a boolean
return True if something else False
然后,如果您有Person
的任何特定实例,则可以查看is_in_category
属性
for person in Person.objects.all():
if person.is_in_category:
# do something
这也适用于模板......例如,如果你想制作人员表
<table><tr><th>Name</th><th>In category?</th></tr>
{% for person in people %}
<tr>
<td>{{ person.first_name }}, {{person.last_name}}</td>
<td>{% if person.is_in_category %}Yes{% else %}No{% endif %}</td>
</tr>
{% endfor %}
</table>
但是,由于属性仅作为Python构造存在,因此不能使用基于此属性的SQL查询。
# this will not work
people_in_category = Person.objects.filter(is_in_category=False)
如果要执行这样的查询,则需要在模型或相关模型上创建一个字段,否则需要提供与该属性等效的SQL表达式。
编辑:
根据您的模型,您可以执行应该执行相同操作的查询。您的event
模型有一个attendees
字段,这将是您正在寻找的字段,并且是这样做的方式,因为看起来您手头有事件ID并且可以访问事件模型。
evnt = event.objects.get(pk=eventid)
evnt.attendees # people who attended the event
did_not_attend = people.objects.exclude(id__in=evnt.attendees)
您可能需要考虑在模型管理器上创建一个方法,该方法为查询注释该属性为您提供的相同效果。例如
class PersonManager(models.Manager):
def for_event(self, evnt):
attended_event = person.objects.filter(id__in=evnt.attendees)
qs = self.get_queryset()
return qs.annotate(attended=Exists(attended_event))
然后,如果您使用您的人员模型注册此经理,您可以
for p in person.objects.for_event(evnt):
if p.attended:
# they attended the event