加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

django报错解决:view must be a callable or a list/tuple in t

发布时间:2020-12-15 17:09:32 所属栏目:大数据 来源:网络整理
导读:django版本:1.11.15 django应用,修改urls.py后,访问报错: TypeError at / view must be a callable or a list/tuple in the case of include(). 修改后的urls.py文件: from django.conf.urls import url from django.contrib import admin urlpatterns

django版本:1.11.15

django应用,修改urls.py后,访问报错:
TypeError at /
view must be a callable or a list/tuple in the case of include().

修改后的urls.py文件:
from django.conf.urls import url
from django.contrib import admin

urlpatterns = [
url(r'^admin/',admin.site.urls),
url(r'^$','hello.views.home',name='home'),
url(r'^hello/$','hello.views.hello',name='hello'),
]

这是因为:从1.10后django后patterns被移除了,已经没有这个模块了。

修改为:
from django.conf.urls import url
from django.contrib import admin
from hello import views

urlpatterns = [
url(r'^admin/',
url(r'^$',views.home,
url(r'^hello/$',views.hello,
]

重启uwsgi后,访问正常。

其实urls.py里已经注释说明了:

"""hello URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.11/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$',name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: url(r'^$',Home.as_view(),name='home')
Including another URLconf
1. Import the include() function: from django.conf.urls import url,include
2. Add a URL to urlpatterns: url(r'^blog/',include('blog.urls'))
"""

django版本差异造成的,o(╥﹏╥)o

?

done!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读