TIL | Django - 프로젝트 시작하기4

송치헌·2021년 8월 13일
0

TIL | Wecode - Django

목록 보기
4/18
post-thumbnail

이 프로젝트는 장고 공식 홈페이지에 올라온 첫 번째 장고 앱 작성하기, part 4 를 보고 작성한다.

무엇을 배웠는가

앞에서 작성한 투표 템플릿을 form태그를 이용하여 다시 작성해보자.

# polls/templates/polls/detail.html

<h1>{{ question.question_text }}</h1>

{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}

<form action="{% url 'polls:vote' question.id %}" method="post">
{% csrf_token %}
{% for choice in question.choice_set.all %}
    <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}">
    <label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br>
{% endfor %}
<input type="submit" value="Vote">
</form>

그 다음 vote()함수를 추가해보자.

# polls/views.py
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import get_object_or_404, render
from django.urls import reverse

from .models import Choice, Question
# ...
def vote(request, question_id):
    question = get_object_or_404(Question, pk=question_id)
    try:
        selected_choice = question.choice_set.get(pk=request.POST['choice'])
    except (KeyError, Choice.DoesNotExist):
        # Redisplay the question voting form.
        return render(request, 'polls/detail.html', {
            'question': question,
            'error_message': "You didn't select a choice.",
        })
    else:
        selected_choice.votes += 1
        selected_choice.save()
        # Always return an HttpResponseRedirect after successfully dealing
        # with POST data. This prevents data from being posted twice if a
        # user hits the Back button.
        return HttpResponseRedirect(reverse('polls:results', args=(question.id,)))

설문 조사를 끝내고 나서 다시 설문 조사 페이지로 리다이렉트하는 코드를 작성한다.

# polls/views.py

from django.shortcuts import get_object_or_404, render


def results(request, question_id):
    question = get_object_or_404(Question, pk=question_id)
    return render(request, 'polls/results.html', {'question': question})

이제 결과 템플릿을 만들어보자.

# polls/templates/polls/results.html

<h1>{{ question.question_text }}</h1>

<ul>
{% for choice in question.choice_set.all %}
    <li>{{ choice.choice_text }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}</li>
{% endfor %}
</ul>

<a href="{% url 'polls:detail' question.id %}">Vote again?</a>

다시 웹브라우저를 켜서 서버를 실행하고 localhost:8000/polls/1/ 을 주소창에 입력해보자. 그 다음 투표창에서 투표를 해보면 투표를 할 때마다 결과가 달라질 것이다.

어디에 적용했는가

part 1,2,3와 같이 프로젝트를 진행하며 배운 내용 적용함

어려웠던 점은 무엇인가

(없음)

profile
https://oraange.tistory.com/ 여기에도 많이 놀러와 주세요

0개의 댓글