当前位置: 首页 > 工具软件 > Pydata > 使用案例 >

python manage.py loaddata dumpdata . 用于导出和导入数据库中数据

齐鸿光
2023-12-01

导出数据

python manage.py dumpdata -o /Users/xdstar/Desktop/b.json accounts.User cinema.Province cinema.City cinema.District cinema.Street --indent 2

-o 后边加导出的路径

然后后边的 accounts cinema.Province cinema.City cinema.District cinema.Street

这些是需要导出app 或者 app.Model 的名称 这样可以精确的导出

–indent 2 可以设置导出的格式

导入数据

python manage.py loaddata /Users/xdstar/Desktop/b.json --settings ticket_audit.wang_settings
 类似资料: