本文整理汇总了Python中models.Category.get_tree方法的典型用法代码示例。如果您正苦于以下问题:Python Category.get_tree方法的具体用法?Python Category.get_tree怎么用?Python Category.get_tree使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Category
的用法示例。
在下文中一共展示了Category.get_tree方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: common_pieces
# 需要导入模块: from models import Category [as 别名]
# 或者: from models.Category import get_tree [as 别名]
def common_pieces(request):
categories = Category.get_tree()
if request.is_ajax():
template = 'base_ajax.html'
else:
template = 'base.html'
return {
'base_template': template,
'shop': {
'basket': Basket(request),
'categories': categories
}
}
示例2: category
# 需要导入模块: from models import Category [as 别名]
# 或者: from models.Category import get_tree [as 别名]
def category(request, path=None):
tree = Category.get_tree()
res = {}
if path is None:
res['root'] = tree[0]
else:
if path.endswith('.html'):
ware_slug = path.split('/')[-1][:-5]
path = path[0:len(path)-len(ware_slug)-6]
res['ware'] = Ware.objects.get(slug=ware_slug)
res['TEMPLATE'] = 'shop/ware.html'
candidates = [x for x in tree if x._materialized_path == path]
if len(candidates) <> 1:
raise Http404
res['root'] = candidates[0]
return res