1.xadmin的下载
源码包下载地址:
GitHub - sshwsfc/xadmin at django2
2 .在工程项目根目录中执行一下命令 下载依赖
$ pip install -r requirements.txt
3. 修改base.py ( python 3.8 以上的版本,以下的不用)


# >
new_attrs = {'__module__': module}
classcell = attrs.pop('__classcell__', None)
if classcell is not None:
new_attrs['__classcell__'] = classcell
new_class = super_new(cls, name, bases, new_attrs)
# >
4 自己的数据库模型类,完成数据库迁移
python manage.py makemigrations
python manage.py migrate
5.添加管理员
$ python manage.py createsuperuser
6.启动
$ python manage.py runserver


XAdmin安装与配置

本文详细介绍了如何使用XAdmin进行项目的快速搭建,包括从下载源码包到完成数据库迁移及管理员账号创建的具体步骤。

193

被折叠的 条评论
为什么被折叠?



