Flask-Mongoengine拡張機能を使用してMongoEngineを機能させようとしていますが、ListFieldを使用すると、次のエラーが発生します。
if field.field.choices:
AttributeError: 'NoneType' object has no attribute 'choices'
これが私のコードです:
class Business(db.Document):
name = db.StringField(required=True)
address = db.StringField()
location = db.GeoPointField()
tags = db.ListField()
area = db.ReferenceField(Area, dbref=True)
contact = db.EmbeddedDocumentField(Contact)
details = db.EmbeddedDocumentField(details)