«django-1.10» 태그된 질문

4
Django URL TypeError : view는 callable이거나 include ()의 경우 목록 / 튜플이어야합니다.
Django 1.10으로 업그레이드 한 후 오류가 발생합니다. TypeError: view must be a callable or a list/tuple in the case of include(). 내 urls.py는 다음과 같습니다. from django.conf.urls import include, url urlpatterns = [ url(r'^$', 'myapp.views.home'), url(r'^contact/$', 'myapp.views.contact'), url(r'^login/$', 'django.contrib.auth.views.login'), ] 전체 역 추적은 다음과 같습니다. Traceback (most recent call last): …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.