0
私は以下のシリアライザを持っています。私はキー:値表現を追加しようとしています。 stackoverflowで検索した後、Return list of objects as dictionary with keys as the objects id with django rest framerworkの答えに基づいて、私はto_representationメソッドを上書きしました。Django rest framework:Listapiviewのリターンキー:配列よりも値のペア辞書
class IngredientListAPIView(ListAPIView):
queryset = Ingredient.objects.all()
serializer_class = IngredientListSerializer
出力は次のようになります:
"results": [
{
"172": {
"id": 172,
"name": "rice sevai",
}
},
{
"218": {
"id": 218,
"name": "rocket leaves",
}
}
]
私が探しています出力は次のとおりです。
"results": {
"172": {
"id": 172,
"name": "rice sevai",
},
"218": {
"id": 218,
"name": "rocket leaves",
}
}
resは配列ではありません。その1つの辞書 –
@SanthoshYedidiはコードを更新しました。私はフードの下で認識しませんでした。LIstAPIViewはクエリーセットのすべてのオブジェクトに対してシリアライザを一度呼び出します –