如何使用外键self检索对象

时间:2009-03-27 14:05:32

标签: django django-models foreign-keys

我有一个模型类别,它有自己的FK引用。 如何将数据发送到模板并使其看起来像这样

  • 第1类
    • 列表项
    • 列表项
  • 第2类
    • 列表项
    • 列表项

2 个答案:

答案 0 :(得分:3)

你可能正在寻找这样的东西:

models.py

from django.db import models

class Category(models.Model):
    name = models.CharField(max_length=100)
    parent = models.ForeignKey('self', blank=True, null=True, related_name='child')
    def __unicode__(self):
        return self.name
    class Meta:
        verbose_name_plural = 'categories'
        ordering = ['name']

views.py

from myapp.models import Category # Change 'myapp' to your applications name.
from django.shortcuts import render_to_response

def category(request)
    cat_list = Category.objects.select_related().filter(parent=None)
    return render_to_response('template.html', { 'cat_list': cat_list })

template.html

<ul>
{% for cat in cat_list %}
    <li>{{ cat.name }}</li>
    <ul>
    {% for item in cat.child.all %}
        <li>{{ item.name }}</li>
    {% endfor %}
    </ul>
{% endfor %}
</ul>

答案 1 :(得分:2)

看起来你正在尝试在模板中进行递归工作。这可能有所帮助: http://www.undefinedfire.com/lab/recursion-django-templates/