参考:Django集成xadmin 错误集锦_cooper_wx的博客-CSDN博客中的方式配置好可以显示xadmin主页后,仍然有问题。
解决: AttributeError: module 'django.db.models' has no attribute 'FieldDoesNotExist'
在提示的路径\extra_apps\xadmin\views\list.py下,添加
from django.core import exceptions
将报错的
except models.FieldDoesNotExist:
改为:
except exceptions.FieldDoesNotExist: