【发布时间】:2016-12-21 14:19:35
【问题描述】:
无论如何要在 django 外键字段上添加过滤器。
class Product(models.Model):
name = models.CharField(max_length=100)
category = models.ForeignKey(Category)
image = models.ImageField()
description = models.TextField()
def __str__(self):
return self.name
【问题讨论】: