前提・実現したいこと
DjangoのクエリセットをJSON化したいのですが、文字化けします。
特にエラーは発生していません。
分かる方いましたらご教示お願いします。
該当のソースコード
Python
1from django.shortcuts import render,redirect,get_object_or_404 2from django.http import HttpResponse 3from .models import Question 4from django.http.response import JsonResponse 5from django.core import serializers 6import json 7 8 9number_of_question = Question.objects.all().count() 10queryset = Question.objects.all() 11 12data_json = serializers.serialize('json',queryset) 13with open("quiz.json","w") as f: 14 json.dump(data_json,f,indent=2,ensure_ascii=False)
該当のソースコード
JSON
1"[{\"model\": \"quiz.question\", \"pk\": 2, \"fields\": {\"question_number\": 1, \"question_text\": \"��ɒa�������̂́H\", \"choices_1\": \"�O��Z�F��s\", \"choices_2\": \"���k�y�V�S�[���f���C�[�O���X\", \"choices_3\": \"�V�����̂���\", \"choices_4\": \"�����ۋ�`\", \"image_1\": \"images/number_1_image_1.jpg\", \"image_2\": \"images/number_1_image_2.jpg\", \"image_3\": \"images/number_1_image_3.jpg\", \"image_4\": \"images/number_1_image_4.jpg\", \"answer\": 1, \"update_date\": \"2020-12-19T04:30:38Z\"}}, {\"model\": \"quiz.question\", \"pk\": 3, \"fields\": {\"question_number\": 2, \"question_text\": \"��ɊJ�ʂ����̂́H\", \"choices_1\": \"���˓����܂Ȃ݊C��\", \"choices_2\": \"���ΊC���勴\", \"choices_3\": \
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/24 14:49