일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 입출력 패턴
- 2557
- vscode
- string 메소드
- Django의 편의성
- 백준
- getline
- 자료구조
- 장고란
- k-eta
- Django란
- c++
- UI한글변경
- 이분그래프
- 프레임워크와 라이브러리의 차이
- string 함수
- double ended queue
- Django Nodejs 차이점
- 엑셀
- 연결요소
- correlation coefficient
- EOF
- 입/출력
- iOS14
- 매크로
- 알고리즘 공부방법
- 표준 입출력
- 구조체와 클래스의 공통점 및 차이점
- scanf
- 시간복잡도
- Today
- Total
Storage Gonie
14. (app1) Django Views와 템플릿 연동(MTV 중 Template과 View을 조작) 본문
14. (app1) Django Views와 템플릿 연동(MTV 중 Template과 View을 조작)
Storage Gonie 2019. 2. 8. 14:281. urls.py에 규칙 추가
from django.conf.urls import url
from django.contrib import admin
from lotto import views
urlpatterns = [
url(r'^admin/', admin.site.urls), #localhost:8000/admin일 때
url(r'^$', views.index), #localhost:8000/일 때 views.index에 연결해준다.
]
from django.conf.urls import url
from django.contrib import admin
from lotto import views
urlpatterns = [
url(r'^admin/', admin.site.urls), #localhost:8000/admin일 때
url(r'^$', views.index), #localhost:8000/일 때 views.index에 연결해준다.
url(r'^lotto/$', views.index2, name='index'),
]
2. views.py에 로직 추가
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request): # request는 브라우저의 요청을 의미한다.
return HttpResponse('<h1>Hello, Inflearn!</h1>')
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request): # request는 브라우저의 요청을 의미한다.
return HttpResponse('<h1>Hello, Inflearn!</h1>')
def index2(request):
return render(request, "lotto/default.html", {}) # 마지막 괄호에 오브젝프틑 포함시킬 수 있음
3. lotto폴더 밑에 templates폴더 생성, 그 밑에 다시 lotto폴더 생성, 그 밑에 default.html 만들기.(템플릿폴더 밑에 같은 이름으로 추가하는 이유는 하나의 앱에 로또 페이지 말고도 다른게 들어갈 수 있으므로)
4. lotto폴더 밑에 static폴더 생성, 그 밑에 css폴더 생성, 그 밑에 lotto.css을 생성
5. 3에서 생성한 html파일에 정적파일인 css를 링크해줌(복사 붙여넣기 할때 ', " 이게 다른걸로 변경되지 않았나 잘 봐야 한다.)
- 첫 줄은 <!DOCTYPE html> 첫바로 아래에 넣어주면 되고, 두번째 줄은 <head>에 넣어주면된다.
- 이해가 안되지만 아래와 같이 해주면 href {}에 있는 게 나중에 상대 경로로 바뀐다.(이것은 페이지 접속 후 코드를 확인해보면 알 수 있음)
{% load staticfiles %}
<link rel="stylesheet" href="{% static 'css/lotto.css' %}">
6. terminal에서 정적파일이 추가되었다는 것을 알림
- "python manage.py staticcollect", yes 입력
7. 서버 실행
'웹개발 > Django 웹서비스 개발(인프런)' 카테고리의 다른 글
16. (app1) Django MTV연동하기 (0) | 2019.02.09 |
---|---|
15. (app1) Django Shell을 이용한 관리(Shell을 통한 DB 읽기/쓰기/수정) (0) | 2019.02.09 |
13. (app1) Django 테스트 코드 작성(MTV 중 Model을 조작) (0) | 2019.02.08 |
12. (app1) Django admin site에 Model 을 등록하여 확인하는 방법(Model 조작) (0) | 2019.02.08 |
11. (app1) Django Model 클래스 만들기 (MTV 중 Model을 조작) (0) | 2019.02.08 |