3
3

More than 1 year has passed since last update.

DjangoでQuerySetをJSONResponseする

Last updated at Posted at 2022-09-15

Djangonのモデルから引っ張ってきたQuerySetをそのままJSONで返そうとすると怒られてしまう。

users = CustomUser.objects.filter(prefecture = 'yamagata')
data = { 
    ...
    'users' : users,
    ...
}
return JsonResponse(data)

TypeError: Object of type QuerySet is not JSON serializable

解決

.values()で値を取り出してlist()でリストに変換。

users = list(CustomUser.objects.filter(prefecture = 'yamagata').values())
data = { 
    ...
    'users' : users,
    ...
}
return JsonResponse(data)

serializers.serializeなどを使ってJSONに変換しても通るが、template側でJSON.parseしなければならず、こちらの方がシンプルだった。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3