解决TypeError: 'AnonymousUser' object is not iterable
程序员文章站
2022-07-14 23:43:23
...
运行Django项目是报错:
TypeError: 'AnonymousUser' object is not iterable
原因分析:
出现这种错误的原因应该是 , 未经过 is_authenticated 的用户使用了 需要经过验证的 用户 才能使用的 功能所导致的
在报错的 View 函数中 的对应 逻辑前 加上:
if not request.user.is_authenticated():
...
推荐阅读
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#
-
TypeError: POST data should be bytes, an iterable of bytes, or a file object.制作有道翻译小翻译软件的问题解决方法
-
解决报错:TypeError: argument should be integer or bytes-like object, not ‘str‘
-
TypeError: POST data should be bytes, an iterable of bytes, or a file object. It cannot be of type s
-
TypeError: POST data should be bytes, an iterable of bytes, or a file object. It cannot be of type s
-
小白入门常见错误python:TypeError: ‘generator‘ object is not subscriptable 的解决方法(萌新踩雷!!!)
-
解决TypeError: 'AnonymousUser' object is not iterable
-
python 3.6.2 TypeError: 'range' object doesn't support item deletion问题解决
-
解决Flask错误“TypeError: 'bool' object is not callable”
-
Python网络编程报错TypeError: a bytes-like object is required, not 'str' 的解决办法