django新手 - 从手动输入的数据创建灯具数据
我终于让 Django 网站的管理部分正常工作了。
我现在开始手动将初始数据输入数据库的繁琐部分。显然,我希望这只是一次性的事情。
任何人都可以向我建议如何从手动输入的数据创建固定装置数据,以便我在执行 manage.pysyncdb 时可以重新加载数据(自动?)?
I have finally got my admin part of my django site working.
I am now beginning the tedious part of manually entering the initial data into the database. Obviously, I want this to be a one time affair.
Can anyone suggest to me how I can create fixtures data from my manually entered data, so that I can reload the data (automatically?) when I do a manage.py syncdb ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
dumpdata管理命令
。
Use the
dumpdata
management command.