我需要显示大量我不想分页的数据,因为我使用的是 jQuery 表格排序器,并且Person.objects.all()
在视图中使用对于数据库来说非常昂贵。加载时间太长,所以我试图在我的视图中执行原始 SQL。
我尝试使用 Django 的通用视图,但它们和方法一样慢objects.all()
。
这是我的模型。本质上,我想显示所有人,同时计算他们出现的次数,比如说,var1
或var2
。
class Person(models.Model):
name = models.CharField(max_length=64, blank=True, null=True)
last_name = models.CharField(max_length=64,)
slug = models.SlugField()
class Object(models.Model):
title = models.ForeignKey(Title)
number = models.CharField(max_length=20)
var1 = models.ManyToManyField(Person, related_name="var1_apps", blank=True, null=True)
var2 = models.ManyToManyField(Person, related_name="var2_apps", blank=True, null=True)
var3 = models.ManyToManyField(Person, related_name="var3_apps", blank=True, null=True)
# ...
slug = models.SlugField()
from django.db import connection
def test (request):
cursor = connection.cursor()
cursor.execute('SELECT * FROM objects_person')
persons = cursor.fetchall() # fetchall() may not be the right call here?
return render_to_response('test.html', {'persons':persons}, context_instance=RequestContext(request))
模板:
<table class="table tablesorter">
<thead>
<tr>
<th>Name</th>
<th>Var1</th>
<th>Var2</th>
<th>Var3</th>
</tr>
</thead>
<tbody>
{% for person in persons %}
<tr>
<td><a href="{{ person.get_absolute_url }}">{{ person.last_name }}{% if person.name %}, {{ person.name }}{% endif %}</a></td>
<td>{{ person.var1_apps.count }}</td>
<td>{{ person.var2_apps.count }}</td>
<td>{{ person.var3_apps.count }}</td>
</tr>
{% endfor %}
</tbody>
</table>
它的作用是迭代空行,但如果我只是调用{{ creator }}
它,它将显示整个 SQL 表——这是我不想要的。我一定对查询做错了,所以任何帮助表示赞赏。