我的问题是[我]希望能够将多个图像分配给[一个]单个用户,这应该是可能的,因为
ForeignKey
但(我)似乎无法让它像那样工作。
不
:A
外国钥匙
是一个
多对一
关系:意思是
许多的
Customer
s可以指一个,可能是同一个,单
Images
.如果你想使用多个
Image
那么你需要写下
外国钥匙
相反的方向,所以:
from django.db import models
class Image(models.Model):
def upload_path(instance, filename):
return f'/images/{filename}'
image = models.ImageField(upload_to=upload_path, blank=True, null=True)
logits = models.BinaryField()
customer = models.ForeignKey(
'Customer',
on_delete=models.SET_NULL,
null=True,
related_name='images'
)
class Customer(models.Model):
customer_id = models.BigIntegerField(unique=True)
first_name = models.CharField(max_length=300)
last_name = models.CharField(max_length=300)
def __str__(self):
return f'{self.customer_id}'