Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将记录从一个数据库复制到另一个 django ?
我尝试了第一个数据库
python manage.py dumpdata 材料 - 缩进 = 1
材料是目录数据库之后?
材料.json?
我要将此文件复制到某处吗?在第二个数据库中?
您可以使用此命令将数据转储到 json 文件:
python manage.py dumpdata material --indent=1 > my_dir/material.json
然后这个命令将它加载到数据库中:
python manage.py loaddata my_dir/material.json