标签: django django-models django-admin
#models.py #below is the code for image upload field in models. image = models.ImageField(upload_to ='images/')
答案 0 :(得分:-1)
因为图像字段仅存储一个图像。如果要存储多个图像,请尝试制作类似ImageModel的图像并将其作为内联添加到admin中。