Django - XML 中的固定装置
谁能指出描述如何使用 XML 完成固定装置的文档?
Could anyone points out the docs which describes how the fixture can be done with XML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
谁能指出描述如何使用 XML 完成固定装置的文档?
Could anyone points out the docs which describes how the fixture can be done with XML?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
执行
manage.py dumpdata --format=xml --indent=4
,您将看到 xml 输出,您也可以将其用于加载数据。Do a
manage.py dumpdata --format=xml --indent=4
and you will see the xml output, which you can also use for loaddata.这两个页面应该有所帮助:
http: //docs.djangoproject.com/en/1.2/howto/initial-data/#providing-initial-data-with-fixtures
和
http://docs.djangoproject.com/en/1.2/topics/serialization/
These two pages should help:
http://docs.djangoproject.com/en/1.2/howto/initial-data/#providing-initial-data-with-fixtures
and
http://docs.djangoproject.com/en/1.2/topics/serialization/