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

Posted 犹冷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django错误笔记——TypeError: view must be a callable or a list/tuple in the case of include().解决办法相关的知识,希望对你有一定的参考价值。

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().解决办法的主要内容,如果未能解决你的问题,请参考以下文章

在 django 项目中出现 typeError 错误

Django:“TypeError:[] 不是 JSON 可序列化的”为啥?

TypeError: connect() 参数 4 必须是 str,而不是 WindowsPath。 /*我在简单登录 django 项目中遇到的错误*/

Django:'TypeError:'HttpResponseForbidden'对象不可调用

django:TypeError:'tuple'对象不可调用

Django 中创建Model时报以下错误: TypeError: init() missing 1 required positional argument: ‘on_delete’