【发布时间】:2010-01-21 09:17:03
【问题描述】:
我有一个名为 Card 的模型,它与 标签。当我保存一张卡片时,我也想创建一个产品,我 希望与标记具有相同的多对多关系。
如何访问实例的标签? 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??
【问题讨论】:
标签: python django methods save many-to-many