gantt() got an unexpected keyword argument 'id'Request Method: GETRequest URL: http://localhost/gantt/gantt/3

2021. 1. 16. 12:05파이썬/Django

urls.py

urlpatterns = [
    path('gantt/<int:id>', views.gantt, name='gantt'),
]

views.py

def gantt(request,gantt_id) :
    return HttpResponse('Hello World')

path의 파라메터명과 함수의 파라메터명이 불일치하여 발생하는 오류 파라메터명을 동일하게 하면 해결 됨 path('gantt/<int:gantt_id>', views.gantt, name='gantt'),