icon picker
장고 뷰 만들기

저번에 나온 버그를 수정할 시간입니다.
image.png
blog/views.py로 넘어가봅시다. 안에 내용이 없으니 이렇게 입력합시다.
blog/views.py
from django.shortcuts import render

# Create your views here.
def post_list(request):
return render(request, 'blog/post_list.html', {})


이렇게 post_list라는 함수(def)를 만들었습니다. 이 함수는 요청(request)을 넘겨받아 render메서드를 호출합니다. 이 함수는 render 메서드를 호출하여 받은(return) blog/post_list.html템플릿을 보여줍니다.
저장하고, 로 접속해볼까요?
다음 문서에선 이 에러를 해결할 거에요.
image.png
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.