获取类的许多实例的外键

时间:2013-08-07 15:54:29

标签: python django key

所以,这就是我现在的代码:

当我点击产品时,我希望得到这个:

所以,现在我的代码只允许我获得一个产品,但我想选择添加无限量的产品。

这是我的代码:

class PurchaseOrder(models.Model):
    product = models.ForeignKey('Product')
    vendor = models.ForeignKey('VendorProfile')
    dollar_amount = models.FloatField(verbose_name='Price')


class Product(models.Model):
   products = models.CharField(max_length=256)

   def __unicode__(self):
       return self.products

我该怎么做?或者说,这可能吗?

1 个答案:

答案 0 :(得分:2)

使用ManyToManyField代替ForeignKey。