溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

django如何實(shí)現(xiàn)手動(dòng)存儲(chǔ)文件到model的FileField

發(fā)布時(shí)間:2021-05-06 09:56:13 來源:億速云 閱讀:518 作者:小新 欄目:開發(fā)技術(shù)

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

通過POST請(qǐng)求,上傳了文件,想要將文件存儲(chǔ)在模型的FileField中

request.FILES中的值均為UploadedFile類文件對(duì)象

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

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

name:命名文件名

content:必須是django.core.files.File或django.core.files.base.ContentFile二者之一的一個(gè)實(shí)例

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()) #創(chuàng)建ContentFile對(duì)象
 #file_content = File(photo.read()) #創(chuàng)建File對(duì)象
 user.photo.save(photo.name, file_content) #保存文件到user的photo域
 user.save()

補(bǔ)充知識(shí):python-ContentFile未保存在Django模型FileField中

在我的Django模型中將字符串另存為文件時(shí),我遇到了問題,因?yàn)槊慨?dāng)我嘗試取回?cái)?shù)據(jù)時(shí),都會(huì)給我一個(gè)ValueError(“屬性沒有關(guān)聯(lián)的文件”).

詳細(xì)信息如下:

模型:

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

保存數(shù)據(jù)的代碼:

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

嘗試讀取數(shù)據(jù)的代碼:

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另存為實(shí)際文件.而不是直接將其分配給該字段,您應(yīng)該調(diào)用該字段的save方法并將其傳遞給:

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

以上是“django如何實(shí)現(xiàn)手動(dòng)存儲(chǔ)文件到model的FileField”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI