tree structure of parent child relation in django templates

前端 未结 4 2049
借酒劲吻你
借酒劲吻你 2021-01-31 12:40

how do i implement the tree structure in django templates with out using django-mptt.

i have model.

class Person(TimeStampedModel):
    name  = models.Ch         


        
4条回答
  •  执笔经年
    2021-01-31 13:28

    I just finished implementing this. I wanted a tree structure for a sub-navigation, but I did not want to do anything strange with recursive templates.

    The solution I implemented is very simple: I simply recurse in the view (in my case a generic helper function) and flatten out the hierarchical structure into a simple list. Then, in my template I just use a for loop to iterate over the list.

    Each element in the list can be one of three things: "in", the object, or "out". In my case, I'm constructing a series of ul li elements in the view, so when I encounter "in" I create a new ul, when I encounter "out" I close the ul. Otherwise, I render the item.

    My template code looks like this:

      {% for item in sub_nav %} {% if item == "in" %}
        {% else %} {% if item == "out" %}
      {% else %}
    • {{item.name}} {% if item.leaf %}
    • {% endif %} {% endif %} {% endif %} {% endfor %}

    The code in the helper function looks like this:

    def get_category_nav(request,categories=None):
        """Recursively build a list of product categories. The resulting list is meant to be iterated over in a view"""
        if categories is None:
            #get the root categories
            categories = ProductCategory.objects.filter(parent=None)
            categories[0].active=True
        else:
            yield 'in'
    
        for category in categories:
            yield category
            subcats = ProductCategory.objects.select_related().filter(parent=category)
            if len(subcats):
                category.leaf=False
                for x in get_category_nav(request,subcats):
                    yield x
            else:
                category.leaf=True
        yield 'out'
    

    Using those snippets, you should be able to build any sort of hierarchical tree you'd like without doing any recursion in the template, and keeping all the logic in the view.

    I know there was already an accepted answer for this, but I thought I'd post the technique in case it helps anyone else.

提交回复
热议问题