728x90
반응형
장고 앱 생성
터미널 창에 accountapp 이라는 App 생성
python manage.py startapp accountapp
1. account App > view.py > hello world 이름의 변수 생성
Hello world!!! 문자 return
2. main App > urls.py 주소 등록
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('account/', include('accountapp.urls')),
]
- path 경로에서 accountapp 하위에 있는 url들 참조
- 기본적으로 localhost:8000/account/ 주소로 이동
3. account App > urls.py 주소 등록
from django.urls import path
app_name = "accountapp"
urlpatterns = [
path('hello_world/', hello_world, name='hello_world'),
]
- localhost:8000/account/hello_world 주소로 이동
- accountapp:hello_world 도 주소 이동 가능 (app_name쓰는 이유)
- hello_world의 view로 이동
4. 크롬에서 동작 확인
http://127.0.0.1:8000/account/hello_world/
반응형
'Backend > Django' 카테고리의 다른 글
django 03. 장고 template의 extends, include 구문과 render 함수 (0) | 2021.10.05 |
---|---|
django 02. Git 활성화, 환경변수 분리, commit (0) | 2021.10.05 |
[Django] Settings.py 파일 공통, 개발, 운영 파일로 나누어 환경 설정 분리하기 (0) | 2021.10.04 |
[Django] 장고 settings.py 설정 및 구조 알아보기 (0) | 2021.09.30 |
장고(Django) - 기본 데이터베이스(SQLite) 생성 및 admin 화면 확인하기 (0) | 2021.09.30 |