일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- getline
- vscode
- correlation coefficient
- c++
- 이분그래프
- 구조체와 클래스의 공통점 및 차이점
- 입/출력
- 백준
- string 메소드
- 장고란
- double ended queue
- 엑셀
- UI한글변경
- 알고리즘 공부방법
- 프레임워크와 라이브러리의 차이
- k-eta
- EOF
- 2557
- scanf
- string 함수
- iOS14
- Django란
- Django의 편의성
- 시간복잡도
- 자료구조
- Django Nodejs 차이점
- 입출력 패턴
- 연결요소
- 매크로
- 표준 입출력
Archives
- Today
- Total
Storage Gonie
27. (app2) template 연동 1 본문
반응형
1. views.py의 index 메소드 수정
- Question 모델을 import해줌
- 아래는 수정한 후 localhost:8000/polls 에 접속한 결과
- 객체.order_by 해주면 admin 페이지에 보여지는 순서도 변경된다.
from django.http import HttpResponse
from .models import Question
def index(request):
latest_question_list = Question.objects.order_by('-pub_date')[:5] # order_by('속성명') : 오름차순, ('-속성명') : 내림차순
output = " ,".join([q.question_text for q in latest_question_list]) # 리스트를 문자열로 바꿔주고 " ,"로 원소 중간중간 넣어주겠다는 것.
return HttpResponse(output)
2. polls폴더 아래에 templates 폴더 생성, templates폴더 아래에 polls폴더 생성, polls폴더 아래에 index.html 생성
- index.html은 아래와 같이 입력한다.
- latest_question_list에 적당한 데이터가 들어있다면 그 아래문장들 실행
- latest_question_list에 적당한 데이터가 들어있지 않다면 else문이 실행되며 "No polls are available" 출력
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
3. views.py의 index 메소드 재수정
- return HttpResponse()가 아닌 render로 템플릿과 연결해준다.
- 아래는 수정한 후 localhost:8000/polls 에 접속한 결과
def index(request):
latest_question_list = Question.objects.order_by('-pub_date')[:5] # order_by('속성명') : 오름차순, ('-속성명') : 내림차순
context = {'latest_question_list' : latest_question_list}
return render(request, 'polls/index.html', context)
반응형
'웹개발 > Django 웹서비스 개발(인프런)' 카테고리의 다른 글
29. (app2) 하드코딩 URL 제거(index.html 수정, polls.urls.py 수정) (0) | 2019.02.19 |
---|---|
28. (app2) Django 404핸들링 (0) | 2019.02.17 |
26. (app2) views.py 및 urls.py 수정2(url에서 입력받은 수를 views에 전달) (0) | 2019.02.17 |
25. (app2) Django admin 페이지 사용하기(모델이 admin 페이지에서 어떻게 보여지는지) (0) | 2019.02.17 |
24. (app2) Django Shell로 Model 조작하기2 (0) | 2019.02.17 |
Comments