本文介绍了Django'WSGIRequest'对象在/ admin /处的AttributeError没有属性'user'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法打开管理站点,出现错误:

I cannot open the admin site, an error appears:

'WSGIRequest'对象没有属性'user'

'WSGIRequest' object has no attribute 'user'

尝试输入网站列表中。

To activate a middleware component, add it to the MIDDLEWARE list in your Django settings.

更改

MIDDLEWARE_CLASSES = [...]

MIDDLEWARE = [...]

这篇关于Django'WSGIRequest'对象在/ admin /处的AttributeError没有属性'user'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 15:47