Django:从带有动态数据的视图渲染模板后,模板保持静态,并且在将数据添加到数据库时不会更改

时间:2018-08-13 00:08:03

标签: django dynamic-data

在我的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)

在我的test.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年代的好方法。

1 个答案:

答案 0 :(得分:1)

在您的情况下,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)