此查询在模型中保存4次。 但我想一次将图像保存在媒体文件夹中!
img = 'mage_url'
for i in [0,1,2,3]:
cmp = CMP_MODEL(age=i,img=img,name='x')
cmp.save()
答案 0 :(得分:0)
https://docs.djangoproject.com/en/3.0/topics/files/#the-built-in-filesystem-storage-class
settings.py:
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'
U可以通过输入文件来请求文件,然后保存文件
编辑: 对于双重文件问题,您可以非常容易地进行检查:
my_file = Path("/path/to/file")
if my_file.is_file():
# file exists
else:
# file is not here
现在,您可以循环播放,如果文件存在,则可以执行所需的任何操作,而在其他部分,文件不在时可以保护文件