在我的 views.py 中,我有这段代码
from .forms import *
from students.models import Student
from classes.models import Class
from venues.models import Venue
from courses.models import Course
from registrations.models import Registration
class Test(View):
template_name = "test.html"
context = {}
data_summary = {
"total_students": Student.objects.all().count(),
"total_classes": Class.objects.all().count(),
"total_courses": Course.objects.all().count(),
"total_registrations": Registration.objects.all().count(),
}
def get(self,*args, **kwargs):
return render(self.request,self.template_name,self.data_summary)
在我的测试中.html我有这个:
<...snip ...>
<h3> Totals: </h3>
<hr>
</div>
<div class="row">
<div class="col-md-2 text-right">
<label style="color: Blue; font-size:24"> Students: </label>
</div>
<div class="col-md-2 text-right">
{% if total_students %}
<...狙击...>
该模板呈现得非常好,但是如果我更新数据库并添加另一个学生和/或班级并重新加载我的页面,则字典中的数据不会更新。
我不知道为什么数据不更新。 我现在正在敲打我的头,也不是 70 年代的好方式。
在您的情况下,data_summary
是一个类属性,是在第一次声明Test
类时(在模块加载时(创建的。
您可以将其移动到get
方法,并确保每当发生页面get
时都会发生数据库调用
def get(self,*args, **kwargs):
data_summary = {
"total_students": Student.objects.all().count(),
"total_classes": Class.objects.all().count(),
"total_courses": Course.objects.all().count(),
"total_registrations": Registration.objects.all().count(),
}
return render(self.request,self.template_name,data_summary)