本文整理匯總了Python中django.utils.datastructures.OrderedSet.get方法的典型用法代碼示例。如果您正苦於以下問題:Python OrderedSet.get方法的具體用法?Python OrderedSet.get怎麽用?Python OrderedSet.get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類django.utils.datastructures.OrderedSet
的用法示例。
在下文中一共展示了OrderedSet.get方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: fields_for_document
# 需要導入模塊: from django.utils.datastructures import OrderedSet [as 別名]
# 或者: from django.utils.datastructures.OrderedSet import get [as 別名]
def fields_for_document(document, fields=None, exclude=None, widgets=None,
formfield_callback=None,
field_generator=MongoFormFieldGenerator):
"""
Returns a ``OrderedSet`` containing form fields for the given model.
``fields`` is an optional list of field names. If provided, only the named
fields will be included in the returned fields.
``exclude`` is an optional list of field names. If provided, the named
fields will be excluded from the returned fields, even if they are listed
in the ``fields`` argument.
"""
field_list = []
ignored = []
if isinstance(field_generator, type):
field_generator = field_generator()
sorted_fields = sorted(document._fields.values(),
key=lambda field: field.creation_counter)
for f in sorted_fields:
if isinstance(f, ObjectIdField):
continue
if isinstance(f, ListField) and not (f.field.choices or isinstance(f.field, ReferenceField)):
continue
if fields is not None and not f.name in fields:
continue
if exclude and f.name in exclude:
continue
if widgets and f.name in widgets:
kwargs = {'widget': widgets[f.name]}
else:
kwargs = {}
if formfield_callback is None:
form_field = field_generator.generate(f, **kwargs)
elif not callable(formfield_callback):
raise TypeError('formfield_callback must be a function or callable')
else:
form_field = formfield_callback(f, **kwargs)
if form_field:
field_list.append((f.name, form_field))
else:
ignored.append(f.name)
field_dict = OrderedSet(field_list)
if fields:
field_dict = OrderedSet(
[(f, field_dict.get(f)) for f in fields
if ((not exclude) or (exclude and f not in exclude)) and (f not in ignored)]
)
return field_dict