美文网首页
Files 用户上传的

Files 用户上传的

作者: xncode | 来源:发表于2020-12-02 12:12 被阅读0次

在本地存储文件需要设置MEDIA_ROOT MEDIA_URL

File (django.core.files.File)

django使用File来代表文件

with open('/path/to/hello.world', 'w') as f:
    myfile = File(f)
    myfile.write('Hello World')

File storage

from django.core.files.storage import default_storage
default_storage.save size open delete exists

相关文章

网友评论

      本文标题:Files 用户上传的

      本文链接:https://www.haomeiwen.com/subject/bkmwbktx.html