本文整理匯總了Python中flask_mongoengine.MongoEngine.ListField方法的典型用法代碼示例。如果您正苦於以下問題:Python MongoEngine.ListField方法的具體用法?Python MongoEngine.ListField怎麽用?Python MongoEngine.ListField使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類flask_mongoengine.MongoEngine
的用法示例。
在下文中一共展示了MongoEngine.ListField方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: QuokkaDocument
# 需要導入模塊: from flask_mongoengine import MongoEngine [as 別名]
# 或者: from flask_mongoengine.MongoEngine import ListField [as 別名]
try:
doc = self.get(*q_objs, **query)
return doc, False
except self._document.DoesNotExist:
query.update(defaults)
doc = self._document(**query)
if auto_save:
doc.save(write_options=write_options)
return doc, True
class QuokkaDocument(Document):
"""Abstract document with extra helpers in the queryset class"""
meta = {'abstract': True,
'queryset_class': QuokkaQuerySet}
class QuokkaDynamicDocument(DynamicDocument):
"""Abstract Dynamic document with extra helpers in the queryset class"""
meta = {'abstract': True,
'queryset_class': QuokkaQuerySet}
db = MongoEngine()
db.ListField = ListField
db.Document = QuokkaDocument
db.DynamicDocument = QuokkaDynamicDocument