AttributeError at /gantt/gantt/'Gantt' object has no attribute 'get'Request Method: GETRequest URL: http://localhost/gantt/gantt/Django Version: 3.1.2Exception Type: AttributeErrorException Value:'Gantt' object has no attribute 'get'
2021. 1. 16. 12:02ㆍ파이썬/Django
views.py
def gantt(request) :
return HttpResponse('Hello World')
urls.py
urlpatterns = [
path('gantt/', views.Gantt, name='gantt'),
]
http://localhost/gantt/gantt/ 호출시 에러 발생
urls.py에서 'views.Gantt''가 오타 'views.gantt'로 변경하면 해결됨
'파이썬 > Django' 카테고리의 다른 글
gantt() got an unexpected keyword argument 'id'Request Method: GETRequest URL: http://localhost/gantt/gantt/3 (0) | 2021.01.16 |
---|---|
The current path, gantt/gantt/, didn't match any of these. (0) | 2021.01.16 |
같은 위치의 다른 파일을 호출 할 경우, '.' 또는 '현재 디렉토리명' 사용 가능 (0) | 2021.01.15 |
Tag LIbrary 주석 (0) | 2021.01.15 |
tag library 참조 (0) | 2021.01.15 |