-
[Python] views에서 html로 context 넘겨서 사용하기Python/Django 2021. 11. 20. 18:59
# views.py def index(request): my_dict={'myName':'kim', 'className':'stylish'} return render(request, 'index.html', context=my_dict) # 세번째 인자로 딕셔너리를 전달해준다
# index.html <body> <h1 class={{ className }}>Hello My name is : {{ myName }}</h1> # 딕셔너리의 key로 접근해서 데이터를 불러온다 </body>
'Python > Django' 카테고리의 다른 글
[Python] TypeError: __init__() missing 1 required positional argument: 'on_delete' (0) 2021.11.30 [Python] settings.py에 static folder 연결해서 html에서 사용하기 (0) 2021.11.20 [Python] settings.py에서 Templates DIR 상대경로로 설정하기 (0) 2021.11.20 [Python] Django 초기 설정, manage.py 명령어 모음 (0) 2021.11.20 [Python] Django 초기 세팅 (0) 2021.11.19