ImportError: cannot import name 'login' from 'django.contrib.auth.views'

错误提示:

  File "D:\code\python_work\learning_log\users\urls.py", line 4, in <module>
    from django.contrib.auth.views import login
ImportError: cannot import name 'login' from 'django.contrib.auth.views' (D:\code\python_work\learning_log\ll_env\lib\site-packages\django\contrib\auth\views.py)

修改方法:

from django.contrib.auth.views import login 替换为

from django.contrib.auth import login

重新启动服务

猜你喜欢

转载自www.cnblogs.com/cwy6688/p/12049999.html