-
使用提供的文件名和內容保存新文件。這不會替換現有文件,但會創建一個新文件並更新對象以指向它。如果
save
是True
,則保存文件後將調用模型的save()
方法。也就是說,這兩行:>>> car.photo.save('myphoto.jpg', content, save=False) >>> car.save()
相當於:
>>> car.photo.save('myphoto.jpg', content, save=True)
請注意,
content
參數必須是File
File
ContentFile
本文介紹 django.core.files.File.save
的用法。
聲明
File.save(name, content, save=True)
相關用法
- Python File next()用法及代碼示例
- Python File tell()用法及代碼示例
- Python File seek()用法及代碼示例
- Python File writable()用法及代碼示例
- Python File close()用法及代碼示例
- Python Django FileField.upload_to用法及代碼示例
- Python File flush()用法及代碼示例
- Python File write()用法及代碼示例
- Python File readline()用法及代碼示例
- Python File read()用法及代碼示例
- Python Django FilePathField.path用法及代碼示例
- Python File truncate()用法及代碼示例
- Python File fileno()用法及代碼示例
- Python File open()用法及代碼示例
- Python File isatty()用法及代碼示例
- Python File readlines()用法及代碼示例
- Python File seekable()用法及代碼示例
- Python File readable()用法及代碼示例
- Python File writelines()用法及代碼示例
- Python OpenCV Filter2D()用法及代碼示例
- Python Django FilteredRelation用法及代碼示例
- Python Django Field.description用法及代碼示例
- Python Django Field.type_name用法及代碼示例
- Python Django Field.help_text用法及代碼示例
- Python Django Field.width用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.core.files.File.save。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。