當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。