这看起来一定很简单,但我还没有找到解决这个问题的答案。
基本上,我希望我的Django模板循环浏览我在该页面视图中创建的列表。但是,当我尝试运行它时,我得到了#34;属性错误:
'列表'对象没有属性' get'"。我一直试图扩展Django民意调查应用程序,这个应用程序的想法是按作者排序的书籍投票。因此,这个视图将显示一个表格,其中一方是作者的名字,另一方面是每本作者的总票数。
以下是模型。
class Author(models.Model):
author_name = models.CharField(max_length=200)
def __unicode__(self):
return self.author_name
class Book(models.Model):
author = models.ForeignKey(Author)
title = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __unicode__(self):
return self.title
以下是我尝试按作者对投票进行分组并将其添加到列表中的视图。
def totals(request):
a = Author.objects.order_by('author_name')
b = Book.objects.order_by('author__author_name')
total = []
for i in range(len(b)):
if i < len(b)-1:
x = b[i].votes
if b[i].author == b[i+1].author:
x += b[i+1].votes
else:
total.append(x)
else:
x = b[i].votes
total.append(x)
return total
return render(request, "book/totals.html", {"a":a, "total":total})
这是模板。第一个循环开始&#34; a&#34;工作正常,它是第二个应该循环通过&#34;总计&#34;那不行。
<h1>Total Votes</h1>
<table style="border-collapse:collapse;">
<thead>
<tr>
<th colspan="2"><strong>Totals</strong></th>
</tr>
<tr style="border-bottom:1px solid black;">
<th style="padding:5px;"><em>Authors</em></th>
<th style="padding:5px;border-left:1px solid black;"><em>Votes</em></th>
</tr>
</thead>
{% for author in a %}
<tr>
<td>{{ author }}</td>
</tr>
{% endfor %}
{% for x in total %}
<tr>
<td>{{ total[x] }}</td>
</tr>
{% endfor %}
</thead>
好的,我认为就是这样。感谢所有读过这篇文章的人。显然我对此很新,所以如果有任何其他评论或反馈,我肯定会感激听到他们。 谢谢!
编辑:这是追溯 -
Environment:
Request Method: GET
Request URL: http://127.0.0.1:8000/book/totals/
Django Version: 1.8.3
Python Version: 2.7.10
Installed Applications:
('django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'book')
Installed Middleware:
('django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'django.middleware.security.SecurityMiddleware')
Traceback:
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
223. response = middleware_method(request, response)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/middleware/clickjacking.py" in process_response
31. if response.get('X-Frame-Options', None) is not None:
Exception Type: AttributeError at /book/totals/
Exception Value: 'list' object has no attribute 'get'
答案 0 :(得分:1)
请尝试使用x,因为x是一个对象而不是索引。
String path = "/storage/emulated/0/BlackHole/Black Hole/1gatopan0000.png"
ImageLoader.getInstance().displayImage(path, viewHolder.imageView);
我希望有用。
答案 1 :(得分:1)
您的视图应返回HTTP响应。但是,您的视图会返回copyFiles()
,即total
。
list
您应该删除此行,或者更改它以使其返回HTTP响应。