如何使用manage.py dumpdata创建更漂亮的装置?

发布于 2024-08-25 19:40:37 字数 228 浏览 7 评论 0原文

我正在尝试以更漂亮的方式打印我的 Django 装置。

我已经输出了灯具:
python manage.py dumpdata>> Fixture_app.json

这将创建一个文件,其中一行包含 1000 个字符。 当我尝试使用文本编辑器( TextMate )查看文件时,编辑器挂起。

无论如何,是否可以使用多行以更漂亮的方式导出灯具?

I'm trying to get my Django fixtures printed in a prettier way.

I've outputting the fixtures:
python manage.py dumpdata >> fixture_app.json

This creates a file with 1000's of characters all on one line.
When I try to view the file with my Text Editor( TextMate ), the Editor hangs.

Is there anyway that the fixtures can be exported in a prettier way using multiple lines?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

方觉久 2024-09-01 19:40:37

你可以尝试一下:

python manage.py dumpdata --indent=2

这样会更容易阅读。

You can try:

python manage.py dumpdata --indent=2

it will be easier to read.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文