2014-11-06 77 views
0

在我的模型我有,就目前而言,3類:如何查詢對象及其子對象爲JSON?

  • 任務:追求
  • GoToAndAnswer的基本屬性:還挺類型的追求的,它擴展了任務
  • SeekAndAnswer:同上,延伸任務

我正在使用Django來構建一個API,因此在我的視圖中我想打印關於這些Quests的信息以JSON格式。問題是我不知道如何正確序列化對象(我真的在新的Django和Python):

# Only get the attributes of the class Quest, obviously 
serializers.serialize("json", Quest.objects.all()) 

# Only get the atributes of the GoToAndAnswer, nothing about the Quest attributes 
serializers.serialize("json", GoToAndAnswer.objects.all()) 

因此,這是實現這一目標的最佳方式是什麼?

我看到的帖子是這樣的:JSON Serialization of a Django inherited model

但它並沒有幫助...提前

感謝

回答