91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

django如何實現手動存儲文件到model的FileField

發布時間:2021-05-06 09:56:13 來源:億速云 閱讀:520 作者:小新 欄目:開發技術

小編給大家分享一下django如何實現手動存儲文件到model的FileField,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

通過POST請求,上傳了文件,想要將文件存儲在模型的FileField中

request.FILES中的值均為UploadedFile類文件對象

表單上傳的文件對象存儲在類字典對象request.FILES中,表單格式需為multipart/form-data

FieldFile.save(name, content, save=True)

name:命名文件名

content:必須是django.core.files.File或django.core.files.base.ContentFile二者之一的一個實例

from django.core.files.base import ContentFile
#from django.core.files import File


photo=request.FILES.get('file','')
user=UserProfile.objects.get(id=uid)
if photo: 
 file_content = ContentFile(photo.read()) #創建ContentFile對象
 #file_content = File(photo.read()) #創建File對象
 user.photo.save(photo.name, file_content) #保存文件到user的photo域
 user.save()

補充知識:python-ContentFile未保存在Django模型FileField中

在我的Django模型中將字符串另存為文件時,我遇到了問題,因為每當我嘗試取回數據時,都會給我一個ValueError(“屬性沒有關聯的文件”).

詳細信息如下:

模型:

class GeojsonData(models.Model):
dname = models.CharField(max_length=200, unique=True)
gdata = models.FileField(upload_to='data')
def __str__(self):
 return self.dname

保存數據的代碼:

cf = ContentFile(stringToBeSaved)
gj = GeojsonDatua(dname = namevar, gdata = cf)
gj.save()

嘗試讀取數據的代碼:

def readGeo(data):
 f = GeojsonData.objects.all().get(id=data.id).gdata
 f.open(mode ='rb')
 geo = f.read()
 return geo

追溯:

File "C:\Python\Python36-32\lib\site-packages\django\core\handlers\exception.py" in inner
41. response = get_response(request)

File "C:\Python\Python36-32\lib\site-packages\django\core\handlers\base.py" in _get_response
187. response = self.process_exception_by_middleware(e, request)

File "C:\Python\Python36-32\lib\site-packages\django\core\handlers\base.py" in _get_response
185. response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "C:\Python\Python36-32\lib\site-packages\django\contrib\auth\decorators.py" in _wrapped_view
23. return view_func(request, *args, **kwargs)

File "C:\app\views.py" in mapa
80. geostr = app.readGeo.readGeo(d)

File "C:\app\readGeo.py" in readGeo
6. f.open(mode ='rb')

File "C:\Python\Python36-32\lib\site-packages\django\db\models\fields\files.py" in open
80. self._require_file()

File "C:Python\Python36-32\lib\site-packages\django\db\models\fields\files.py" in _require_file
46. raise ValueError("The '%s' attribute has no file associated with it." % self.field.name)

Exception Type: ValueError at /app/map/1
Exception Value: The 'gdata' attribute has no file associated with it.

解決方法:

您需要將ContentFile另存為實際文件.而不是直接將其分配給該字段,您應該調用該字段的save方法并將其傳遞給:

gj = GeojsonDatua(dname = namevar)
gj.gdata.save('myfilename', cf)

以上是“django如何實現手動存儲文件到model的FileField”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

庄河市| 新营市| 旌德县| 东宁县| 芷江| 商洛市| 中卫市| 仪陇县| 德州市| 宜黄县| 台湾省| 临朐县| 延津县| 庄浪县| 西华县| 青海省| 新巴尔虎右旗| 兰西县| 玉山县| 都江堰市| 正定县| 泰州市| 芦溪县| 平顶山市| 德阳市| 江达县| 白水县| 盱眙县| 淮安市| 铜山县| 密云县| 五寨县| 襄汾县| 沙田区| 晋宁县| 利川市| 吉林市| 南木林县| 永康市| 湄潭县| 汾西县|