本文整理汇总了Python中wagtail.search.index.Indexed方法的典型用法代码示例。如果您正苦于以下问题:Python index.Indexed方法的具体用法?Python index.Indexed怎么用?Python index.Indexed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wagtail.search.index
的用法示例。
在下文中一共展示了index.Indexed方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_dummy_type
# 需要导入模块: from wagtail.search import index [as 别名]
# 或者: from wagtail.search.index import Indexed [as 别名]
def make_dummy_type(self, search_fields):
return type(str('DummyType'), (index.Indexed, ), dict(search_fields=search_fields))
示例2: get_boosts
# 需要导入模块: from wagtail.search import index [as 别名]
# 或者: from wagtail.search.index import Indexed [as 别名]
def get_boosts():
boosts = set()
for model in apps.get_models():
if issubclass(model, Indexed):
for search_field in get_search_fields(model.get_search_fields()):
boost = search_field.boost
if boost is not None:
boosts.add(boost)
return boosts