mongoengine FileField에 대한 http://mongoengine.org/docs/v0.4/guide/gridfs.html 설명서 다음'FileField'객체에 'put'속성이없는 이유는 무엇입니까?
내 모델에서
files = ListField(FileField())
# Create an entry
photo = FileField()
f = open('/home/foo/marmot.jpg', 'r')
photo.put(f, content_type='image/jpeg')
entry.files = [photo,]
그러나 다음과 같은 오류가 발생합니다.
Traceback (most recent call last):
File "/home/bar/tests.py", line 76, in test_MongoDGACLogook_creation
photo.put(f, content_type='image/jpeg')
AttributeError: 'FileField' object has no attribute 'put'
뭔가 분명하지 않습니까?
고맙습니다
어떻게이 대답은 FileFields를 ListField에 넣는가 ?? – MFB