我有2个模型如下
class Product(models.Model):
product_name = models.CharField(max_length=100)
product_weight = models.CharField(max_length=30)
class ProductImage(models.Model):
product = models.ForeignKey(Product, on_delete=models.DO_NOTHING)
image = models.ImageField(upload_to='/images/{product_id}/', blank=True)
如何在产品图像模型中提取product_id?
提前致谢。
叮当猫咪
qq_遁去的一_1
慕盖茨4494581
相关分类