当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django ContentFile用法及代码示例


本文介绍 django.core.files.base.ContentFile 的用法。

声明

class ContentFile(content, name=None)[source]

ContentFile 类继承自 File ,但与 File 不同,它对字符串内容(也支持字节)而不是实际文件进行操作。例如:

from django.core.files.base import ContentFile

f1 = ContentFile("esta frase está en español")
f2 = ContentFile(b"these are bytes")

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.core.files.base.ContentFile。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。