일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 입출력 패턴
- Django Nodejs 차이점
- c++
- 구조체와 클래스의 공통점 및 차이점
- vscode
- 매크로
- 시간복잡도
- iOS14
- 장고란
- 이분그래프
- 입/출력
- Django의 편의성
- 백준
- EOF
- scanf
- 알고리즘 공부방법
- string 함수
- UI한글변경
- 프레임워크와 라이브러리의 차이
- double ended queue
- correlation coefficient
- k-eta
- Django란
- 표준 입출력
- string 메소드
- 2557
- getline
- 엑셀
- 연결요소
- 자료구조
Archives
- Today
- Total
Storage Gonie
29. (app2) 하드코딩 URL 제거(index.html 수정, polls.urls.py 수정) 본문
웹개발/Django 웹서비스 개발(인프런)
29. (app2) 하드코딩 URL 제거(index.html 수정, polls.urls.py 수정)
Storage Gonie 2019. 2. 19. 16:54반응형
1. index.html의 하드코딩된 부분을 수정한다.
- 위 부분을 아래와 같이 수정.
- '아래에서 detail'은 polls/urls.py의 urlpatterns 부분에 있는 name.
- 결과적으로 생성되는 코드는 둘다 아래와 같음
{% for question in latest_question_list %}
<li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
{% endfor %}
{% for question in latest_question_list %}
<li><a href="{% url 'detail' question.id %}">{{ question.question_text }}</a></li>
{% endfor %}
url(r'^(?P<question_id>[0-9]+)/$', views.detail, name = "detail"),
2. url namespace를 사용하여 통해 중복된 name을 사용할 수 있게 한다.
- polls.urls.py 에 app_name 을 추가.
- index.html 의 detail 이름에 namespace를 지정해준다.
app_name = 'polls'
urlpatterns = [
url(r'^$', views.index, name = 'index'),
url(r'^(?P<question_id>[0-9]+)/$', views.detail, name = "detail"),
url(r'^(?P<question_id>[0-9]+)/results/$', views.results, name = "results"),
url(r'^(?P<question_id>[0-9]+)/vote/$', views.vote, name = "vote"),
]
{% for question in latest_question_list %}
<li><a href="{% url 'polls:detail' question.id %}">{{ question.question_text }}</a></li>
{% endfor %}
반응형
'웹개발 > Django 웹서비스 개발(인프런)' 카테고리의 다른 글
31. (app2) POST 처리 (투표결과 DB반영하기) (0) | 2019.02.19 |
---|---|
30. (app2) 커스텀 From 직접 만들기(detail.html수정) (0) | 2019.02.19 |
28. (app2) Django 404핸들링 (0) | 2019.02.17 |
27. (app2) template 연동 1 (0) | 2019.02.17 |
26. (app2) views.py 및 urls.py 수정2(url에서 입력받은 수를 views에 전달) (0) | 2019.02.17 |
Comments