인프런 커뮤니티 질문&답변
AttributeError: module 'blog.views' has no attribute 'post_detail'
작성
·
84
답변 2
0
0
SungYong Lee
지식공유자
views.py에서 post_detail 이 PostList의 내장 함수가 되면 안됩니다.
urls.py에서 views의 post_detail을 사용하겠다고 했습니다. 그런데 PostList의 내장함수로 되어 있으니, 찾을 수 없다고 터미널에서도 에러메시지를 보여주고 있네요.
post_detail 함수를 PostList 클래스 밖으로 꺼내주세요.





