在我的Django模型中将字符串保存为文件时出现问题,因为每当我尝试获取数据时,它都会给我一个ValueError("属性没有关联的文件")。以下是详细信息:
MODEL:
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
TRACEBACK:
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.
答案 0 :(得分:3)
您需要将ContentFile保存为实际文件。您应该调用字段的save
方法并将其传递到:
gj = GeojsonDatua(dname = namevar)
gj.gdata.save('myfilename', cf)
请参阅the docs。
另请注意,如果您总是像这样创建gdata
字段,则可能根本不需要FileField;也许改为使用TextField。
答案 1 :(得分:0)
实际上,问题在于您创建的文件没有名称:ContentFile(<content>, name=None)
。
在这种情况下,数据库将存储一个空字符串值('')
,并且磁盘上不会存储任何文件。 FieldFile根据以下原则工作:没有名称?没有文件。
因此,在创建文件时需要提供一个名称:ContentFile(<content>, name=<file name>)