通过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)
参见the docs.
另请注意,如果您始终像这样创建gdata字段,则可能根本就不需要FileField.也许改用TextField.
以上这篇django 实现手动存储文件到model的FileField就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
更新日志
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]