Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 Django 视图访问数据库数据。问题是当我查询它时,它只返回模型上unicode函数的结果。如何访问模型的其他字段?
谢谢!
假设你有一个学生数据库,
student_list = Student.objects.all() for student in student_list: print student.name
其他字段可以在迭代器中使用,使用 dot( .) 运算符
.