Django TypeError对象不可迭代

3
我试图在 Django 的 HTML 模板中展示一个模型数据。 我的模型:
class Author(models.Model):
    first_name = models.CharField(max_length=100)
    last_name = models.CharField(max_length=100)
    date_of_birth = models.DateField(blank=True, null=True)
    date_of_death = models.DateField(blank=True, null=True)

    def get_absolute_url(self):
        return reverse('author_detail', args=[str(self.id)])

    class Meta():
        ordering = ['first_name', 'last_name']

    def __str__(self):
        return f'{self.first_name} {self.last_name}'

我的观点:
def author_detail_view(request, pk):
    author = get_object_or_404(Author, pk=pk)
    return render(request, 'author_detail.html', context={'author_detail': author})

我的网址:
 path('author/<int:pk>', views.author_detail_view, name='author_detail')

And My Templates View:
{% extends 'base.html' %}

{% block content %}
<h1>Author Detail</h1>
    {% for author in author_detail %}
<ul>
    <li>Name: {{ author.first_name }} {{ author.last_name }}</li>
    <li>Date of Birth: {{ author.date_of_birth }}</li>
</ul>
    {% endfor %}
{% endblock %}

问题是,它显示错误信息:

在/author/2处的TypeError

'Author' 对象不可迭代

请求方法:GET 请求URL:http://127.0.0.1:8000/author/2 Django版本:2.1.5 异常类型:TypeError 异常值:

'Author' 对象不可迭代

异常位置:/home/pyking/.local/lib/python3.6/site-packages/django/template/defaulttags.py中的render,第165行 Python可执行文件:/usr/bin/python3 Python版本:3.6.7


你的author_detail是一个单独的Author对象,所以使用{% for author in author_detail %}并没有太多意义。 - undefined
1个回答

5
author_detail 是一个单独的 Author 对象,因此迭代它是没有意义的。你可以迭代哪些元素呢?
因此,你可以这样渲染它:
{% extends 'base.html' %}

{% block content %}
<h1>Author Detail</h1>
<ul>
    <li>Name: {{ <b>author_detail</b>.first_name }} {{ <b>author_detail</b>.last_name }}</li>
    <li>Date of Birth: {{ <b>author_detail</b>.date_of_birth }}</li>
</ul>
{% endblock %}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接