Django-如何仅打印变量的值

时间:2018-11-29 15:28:24

标签: python django

我正在为一个大学项目工作,我试图用django打印出一个模型的值,但是我在网页上得到的结果是<QuerySet [<Student: lulll>]>,lulll是一名学生的名字。我正在尝试只打印不带查询集和方括号的值。以下是我的views.py文件和我的html http://prntscr.com/loko6n http://prntscr.com/lokoh6

谢谢:)

1 个答案:

答案 0 :(得分:0)

问题是您正在将查询集分配给first_name。您需要先招收学生

这是您在index上想要的内容:

#list of students
students = Student.objects.all() 
#lets select the first
student = students[0]
#here is your first_name
first_name = student.first_name