목록multi-image (1)
하루일문
[Django] multi image 넣기
1. 글에 다수에 사진을 넣기때문에 M:M 관계 지정 models.py class ArticleImage(models.Model): # 외래키로 설정 article = models.ForeignKey(Article, null=True, blank=True, on_delete=models.CASCADE) def article_image_path(instance, filename): return f'articles/{instance.article.pk}/{filename}' # blank=True, null = True 필수 image = ProcessedImageField(blank=True, upload_to = article_image_path, processors= [ResizeToFill(200, ..
django
2023. 5. 2. 17:11