我有一个名为Card的模型,它具有ManyToMany关系 标签。当我保存卡片时,我也想创建一个产品,我也是 想要标记相同的ManyToMany关系。
如何访问实例的标签? self.tags.all()
给出一个空的
列表,如果我在保存后检查,卡实际上有标签。我的
代码如下。为了记录,我使用Django 1.0.5。
class Card(models.Model):
product = models.ForeignKey(Product, editable=False, null=True)
name = models.CharField('name', max_length=50, unique=True, help_text='A short and unique name or title of the object.')
identifier = models.SlugField('identifier', unique=True, help_text='A unique identifier constructed from the name of the object. Only change this if you know what it does.', db_index=True)
tags = models.ManyToManyField(Tag, verbose_name='tags', db_index=True)
price = models.DecimalField('price', max_digits=15, decimal_places=2, db_index=True)
def add_product(self):
product = Product(
name = self.name,
identifier = self.identifier,
price = self.price
)
product.save()
return product
def save(self, *args, **kwargs):
# Step 1: Create product
if not self.id:
self.product = self.add_product()
# Step 2: Create Card
super(Card, self).save(*args, **kwargs)
# Step 3: Copy cards many to many to product
# How do I do this?
print self.tags.all() # gives an empty list??
答案 0 :(得分:2)
您是否使用django-admin保存模型和标签?直到模型的保存后信号之后,多对多字段才会保存在那里。在这种情况下,您可以执行的操作是管理类save_model方法。 E.g:
class CardAdmin(admin.ModelAdmin):
def save_model(self, request, obj, form, change):
obj.save()
form.save_m2m()
#from this point on the tags are accessible
print obj.tags.all()
答案 1 :(得分:0)
您没有在卡上添加任何标签。在您保存卡之前,您无法添加ManyToMany关系,save
通话和self.tags.all()
的通话之间没有时间设置它们。