码迷,mamicode.com
首页 > 其他好文 > 详细

django错误笔记——TypeError: view must be a callable or a list/tuple in the case of include().解决办法

时间:2018-05-16 19:38:47      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:port   log   article   djang   error:   支持   from   ase   tps   

django增加用户认证模块时,总是提醒模块的url.py中 url(r‘^login/$‘, ‘django.contrib.auth.views.login‘, name=‘login‘),出错:

TypeError: view must be a callable or a list/tuple in the case of include().

解决办法:改为下面的写法

from django.contrib.auth.views import login

...

url(r‘^login/$‘, login, name=‘login‘),

...

原因:

django1.10不再支持 url(r‘^login/$‘, ‘django.contrib.auth.views.login‘, name=‘login‘),这种用法;

 

  ——摘自https://blog.csdn.net/gavinking0110/article/details/53738362

django错误笔记——TypeError: view must be a callable or a list/tuple in the case of include().解决办法

标签:port   log   article   djang   error:   支持   from   ase   tps   

原文地址:https://www.cnblogs.com/youleng/p/9047534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!