如何将数据库中的数据检索到views.py中,然后将其发送到要显示的HTML文件? 例如:
答案 0 :(得分:0)
使用通用视图https://docs.djangoproject.com/en/2.0/topics/class-based-views/或制作您自己的视图:
def index(request):
return render(request, 'student.html', {'query': Average.objects.filter(condition) })
会很好