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( ) 演算子を使用して、イテレータで他のフィールドを使用できます。
.