모든 Question에 대해 JSON 형식으로 조회할 수 있는 API 서버 기능을 하나씩 구현해 보려 합니다. 먼저 뷰 polls_api/views.py에 시작해보겠습니다. from django.shortcuts import render from rest_framework.decorators import api_view from polls.models import Question from .serializers import QuestionSerializer from rest_framework.response import Response # Create your views here. @api_view() def question_list(request): questions = Question.objects...