คำถามติดแท็ก django-1.10

4
Django URLs TypeError: view ต้องเป็น callable หรือ list / tuple ในกรณี 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): File "/Users/alasdair/.virtualenvs/django110/lib/python2.7/site-packages/django/utils/autoreload.py", line 226, in wrapper fn(*args, **kwargs) File …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.